diff --git a/docs/src/api/class-apirequestcontext.md b/docs/src/api/class-apirequestcontext.md index c96e01991ca2c..48e00626b06e8 100644 --- a/docs/src/api/class-apirequestcontext.md +++ b/docs/src/api/class-apirequestcontext.md @@ -247,7 +247,7 @@ var data = new Dictionary() { await Request.FetchAsync("https://example.com/api/createBook", new() { Method = "post", DataObject = data }); ``` -The common way to send file(s) in the body of a request is to upload them as form fields with `multipart/form-data` encoding, by specifiying the `multipart` parameter: +The common way to send file(s) in the body of a request is to upload them as form fields with `multipart/form-data` encoding, by specifying the `multipart` parameter: ```js const form = new FormData(); diff --git a/packages/playwright-client/types/types.d.ts b/packages/playwright-client/types/types.d.ts index 604208ad14b25..6980b27b13e3b 100644 --- a/packages/playwright-client/types/types.d.ts +++ b/packages/playwright-client/types/types.d.ts @@ -18295,7 +18295,7 @@ export interface APIRequestContext { * ``` * * The common way to send file(s) in the body of a request is to upload them as form fields with `multipart/form-data` - * encoding, by specifiying the `multipart` parameter: + * encoding, by specifying the `multipart` parameter: * * ```js * const form = new FormData(); diff --git a/packages/playwright-core/types/types.d.ts b/packages/playwright-core/types/types.d.ts index 604208ad14b25..6980b27b13e3b 100644 --- a/packages/playwright-core/types/types.d.ts +++ b/packages/playwright-core/types/types.d.ts @@ -18295,7 +18295,7 @@ export interface APIRequestContext { * ``` * * The common way to send file(s) in the body of a request is to upload them as form fields with `multipart/form-data` - * encoding, by specifiying the `multipart` parameter: + * encoding, by specifying the `multipart` parameter: * * ```js * const form = new FormData();