Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/api/fs.md
Original file line number Diff line number Diff line change
Expand Up @@ -2213,7 +2213,7 @@ passed to it. For performance sensitive code consider using
[`fs.createWriteStream()`][] or [`filehandle.createWriteStream()`][].

It is possible to use an {AbortSignal} to cancel an `fsPromises.writeFile()`.
Cancelation is "best effort", and some amount of data is likely still
Cancellation is "best effort", and some amount of data is likely still
to be written.

```mjs
Expand Down Expand Up @@ -5562,7 +5562,7 @@ performs multiple `write` calls internally to write the buffer passed to it.
For performance sensitive code consider using [`fs.createWriteStream()`][].

It is possible to use an {AbortSignal} to cancel an `fs.writeFile()`.
Cancelation is "best effort", and some amount of data is likely still
Cancellation is "best effort", and some amount of data is likely still
to be written.

```mjs
Expand Down
2 changes: 1 addition & 1 deletion doc/api/globals.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ changes:
description: No longer experimental.
-->

A utility class used to signal cancelation in selected `Promise`-based APIs.
A utility class used to signal cancellation in selected `Promise`-based APIs.
The API is based on the Web API {AbortController}.

```js
Expand Down
2 changes: 1 addition & 1 deletion doc/api/webstreams.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ added: v16.5.0
-->

* `reason` {any}
* Returns: A promise fulfilled with `undefined` once cancelation has
* Returns: A promise fulfilled with `undefined` once cancellation has
been completed.

#### `readableStream.getReader([options])`
Expand Down
Loading