Skip to content

Commit

Permalink
Use more past tense
Browse files Browse the repository at this point in the history
  • Loading branch information
wbamberg committed Jul 3, 2024
1 parent 3f2517e commit e4e0420
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions files/en-us/web/api/response/arraybuffer/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ A promise that resolves with an {{jsxref("ArrayBuffer")}}.
- {{jsxref("TypeError")}}
- : Thrown for one of the following reasons:
- The response body is [disturbed or locked](/en-US/docs/Web/API/Fetch_API/Using_Fetch#locked_and_disturbed_streams).
- There is an error decoding the body content (for example, because the {{httpheader("Content-Encoding")}} header is incorrect).
- There was an error decoding the body content (for example, because the {{httpheader("Content-Encoding")}} header is incorrect).
- {{jsxref("RangeError")}}
- : There is a problem creating the associated `ArrayBuffer`.
- : There was a problem creating the associated `ArrayBuffer`.
For example, if the data size is more than [`Number.MAX_SAFE_INTEGER`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER).

## Examples
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/response/blob/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ A promise that resolves with a {{domxref("Blob")}}.
- {{jsxref("TypeError")}}
- : Thrown for one of the following reasons:
- The response body is [disturbed or locked](/en-US/docs/Web/API/Fetch_API/Using_Fetch#locked_and_disturbed_streams).
- There is an error decoding the body content (for example, because the {{httpheader("Content-Encoding")}} header is incorrect).
- There was an error decoding the body content (for example, because the {{httpheader("Content-Encoding")}} header is incorrect).

## Examples

Expand Down
4 changes: 2 additions & 2 deletions files/en-us/web/api/response/bytes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ A promise that resolves with an {{jsxref("Uint8Array")}}.
- {{jsxref("TypeError")}}
- : Thrown for one of the following reasons:
- The response body is [disturbed or locked](/en-US/docs/Web/API/Fetch_API/Using_Fetch#locked_and_disturbed_streams).
- There is an error decoding the body content (for example, because the {{httpheader("Content-Encoding")}} header is incorrect).
- There was an error decoding the body content (for example, because the {{httpheader("Content-Encoding")}} header is incorrect).
- {{jsxref("RangeError")}}
- : There is a problem creating the associated `ArrayBuffer`.
- : There was a problem creating the associated `ArrayBuffer`.
For example, if the data size is more than [`Number.MAX_SAFE_INTEGER`](/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER).

## Examples
Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/response/formdata/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ A {{jsxref("Promise")}} that resolves with a {{domxref("FormData")}} object.
- {{jsxref("TypeError")}}
- : Thrown for one of the following reasons:
- The response body is [disturbed or locked](/en-US/docs/Web/API/Fetch_API/Using_Fetch#locked_and_disturbed_streams).
- There is an error decoding the body content (for example, because the {{httpheader("Content-Encoding")}} header is incorrect).
- There was an error decoding the body content (for example, because the {{httpheader("Content-Encoding")}} header is incorrect).
- The {{glossary("MIME")}} type of the body cannot be determined from the {{httpheader("Content-Type")}} headers included in the response.
- The body cannot be parsed as a `FormData` object.

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/response/json/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ anything that can be represented by JSON — an object, an array, a string, a nu
- {{jsxref("TypeError")}}
- : Thrown for one of the following reasons:
- The response body is [disturbed or locked](/en-US/docs/Web/API/Fetch_API/Using_Fetch#locked_and_disturbed_streams).
- There is an error decoding the body content (for example, because the {{httpheader("Content-Encoding")}} header is incorrect).
- There was an error decoding the body content (for example, because the {{httpheader("Content-Encoding")}} header is incorrect).
- {{jsxref("SyntaxError")}}
- : The response body cannot be parsed as JSON.

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/response/text/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ A Promise that resolves with a {{jsxref("String")}}.
- {{jsxref("TypeError")}}
- : Thrown for one of the following reasons:
- The response body is [disturbed or locked](/en-US/docs/Web/API/Fetch_API/Using_Fetch#locked_and_disturbed_streams).
- There is an error decoding the body content (for example, because the {{httpheader("Content-Encoding")}} header is incorrect).
- There was an error decoding the body content (for example, because the {{httpheader("Content-Encoding")}} header is incorrect).

## Examples

Expand Down

0 comments on commit e4e0420

Please sign in to comment.