docs(fetch): typo in comment (#10160)

This commit is contained in:
Yury Semikhatsky 2021-11-09 14:00:58 -08:00 committed by GitHub
parent 7bb38d2ac8
commit c30447216d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

View file

@ -306,7 +306,7 @@ Target URL.
## fetch-option-params ## fetch-option-params
- `params` <[Object]<[string], [string]|[float]|[boolean]>> - `params` <[Object]<[string], [string]|[float]|[boolean]>>
Query parameters to be send with the URL. Query parameters to be sent with the URL.
## fetch-option-headers ## fetch-option-headers
- `headers` <[Object]<[string], [string]>> - `headers` <[Object]<[string], [string]>>

View file

@ -11840,7 +11840,7 @@ export interface APIRequestContext {
}; }; }; };
/** /**
* Query parameters to be send with the URL. * Query parameters to be sent with the URL.
*/ */
params?: { [key: string]: string|number|boolean; }; params?: { [key: string]: string|number|boolean; };
@ -11926,7 +11926,7 @@ export interface APIRequestContext {
}; }; }; };
/** /**
* Query parameters to be send with the URL. * Query parameters to be sent with the URL.
*/ */
params?: { [key: string]: string|number|boolean; }; params?: { [key: string]: string|number|boolean; };
@ -11960,7 +11960,7 @@ export interface APIRequestContext {
ignoreHTTPSErrors?: boolean; ignoreHTTPSErrors?: boolean;
/** /**
* Query parameters to be send with the URL. * Query parameters to be sent with the URL.
*/ */
params?: { [key: string]: string|number|boolean; }; params?: { [key: string]: string|number|boolean; };
@ -11994,7 +11994,7 @@ export interface APIRequestContext {
ignoreHTTPSErrors?: boolean; ignoreHTTPSErrors?: boolean;
/** /**
* Query parameters to be send with the URL. * Query parameters to be sent with the URL.
*/ */
params?: { [key: string]: string|number|boolean; }; params?: { [key: string]: string|number|boolean; };
@ -12065,7 +12065,7 @@ export interface APIRequestContext {
}; }; }; };
/** /**
* Query parameters to be send with the URL. * Query parameters to be sent with the URL.
*/ */
params?: { [key: string]: string|number|boolean; }; params?: { [key: string]: string|number|boolean; };
@ -12136,7 +12136,7 @@ export interface APIRequestContext {
}; }; }; };
/** /**
* Query parameters to be send with the URL. * Query parameters to be sent with the URL.
*/ */
params?: { [key: string]: string|number|boolean; }; params?: { [key: string]: string|number|boolean; };
@ -12207,7 +12207,7 @@ export interface APIRequestContext {
}; }; }; };
/** /**
* Query parameters to be send with the URL. * Query parameters to be sent with the URL.
*/ */
params?: { [key: string]: string|number|boolean; }; params?: { [key: string]: string|number|boolean; };