Skip to content

Commit

Permalink
docs: fix small typo (#8167)
Browse files Browse the repository at this point in the history
The commit fixes the two typos.

- guarnateed -> guaranteed
- guaranteeded -> guaranteed
  • Loading branch information
hgsgtk committed Mar 28, 2022
1 parent 90ebd0a commit e31b8e6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/common/HTTPRequest.ts
Expand Up @@ -252,7 +252,7 @@ export class HTTPRequest {
/**
* Adds an async request handler to the processing queue.
* Deferred handlers are not guaranteed to execute in any particular order,
* but they are guarnateed to resolve before the request interception
* but they are guaranteed to resolve before the request interception
* is finalized.
*/
enqueueInterceptAction(
Expand Down Expand Up @@ -389,7 +389,7 @@ export class HTTPRequest {
*
* @returns `null` unless the request failed. If the request fails this can
* return an object with `errorText` containing a human-readable error
* message, e.g. `net::ERR_FAILED`. It is not guaranteeded that there will be
* message, e.g. `net::ERR_FAILED`. It is not guaranteed that there will be
* failure text if the request fails.
*/
failure(): { errorText: string } | null {
Expand Down
Expand Up @@ -17,7 +17,7 @@ failure(): {

{ errorText: string; } \| null

`null` unless the request failed. If the request fails this can return an object with `errorText` containing a human-readable error message, e.g. `net::ERR_FAILED`. It is not guaranteeded that there will be failure text if the request fails.
`null` unless the request failed. If the request fails this can return an object with `errorText` containing a human-readable error message, e.g. `net::ERR_FAILED`. It is not guaranteed that there will be failure text if the request fails.

## Remarks

Expand Down
Expand Up @@ -17,7 +17,7 @@ failure(): {

{ errorText: string; } \| null

`null` unless the request failed. If the request fails this can return an object with `errorText` containing a human-readable error message, e.g. `net::ERR_FAILED`. It is not guaranteeded that there will be failure text if the request fails.
`null` unless the request failed. If the request fails this can return an object with `errorText` containing a human-readable error message, e.g. `net::ERR_FAILED`. It is not guaranteed that there will be failure text if the request fails.

## Remarks

Expand Down
Expand Up @@ -17,7 +17,7 @@ failure(): {

{ errorText: string; } \| null

`null` unless the request failed. If the request fails this can return an object with `errorText` containing a human-readable error message, e.g. `net::ERR_FAILED`. It is not guaranteeded that there will be failure text if the request fails.
`null` unless the request failed. If the request fails this can return an object with `errorText` containing a human-readable error message, e.g. `net::ERR_FAILED`. It is not guaranteed that there will be failure text if the request fails.

## Remarks

Expand Down

0 comments on commit e31b8e6

Please sign in to comment.