summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/api/async_hooks.md2
-rw-r--r--doc/api/dgram.md4
-rw-r--r--doc/api/esm.md2
-rw-r--r--doc/api/inspector.md2
-rw-r--r--doc/api/v8.md2
5 files changed, 6 insertions, 6 deletions
diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md
index 54bae4b138..7d07622eda 100644
--- a/doc/api/async_hooks.md
+++ b/doc/api/async_hooks.md
@@ -526,7 +526,7 @@ const server = net.createServer((conn) => {
## JavaScript Embedder API
-Library developers that handle their own asychronous resources performing tasks
+Library developers that handle their own asynchronous resources performing tasks
like I/O, connection pooling, or managing callback queues may use the `AsyncWrap`
JavaScript API so that all the appropriate callbacks are called.
diff --git a/doc/api/dgram.md b/doc/api/dgram.md
index 2ddbee5a13..67c666dbe0 100644
--- a/doc/api/dgram.md
+++ b/doc/api/dgram.md
@@ -392,7 +392,7 @@ added: v8.6.0
* `multicastInterface` {String}
-*Note: All references to scope in this section are refering to
+*Note: All references to scope in this section are referring to
[IPv6 Zone Indices][], which are defined by [RFC 4007][]. In string form, an IP
with a scope index is written as `'IP%scope'` where scope is an interface name or
interface number.*
@@ -486,7 +486,7 @@ packet is allowed to travel through, specifically for multicast traffic. Each
router or gateway that forwards a packet decrements the TTL. If the TTL is
decremented to 0 by a router, it will not be forwarded.
-The argument passed to to `socket.setMulticastTTL()` is a number of hops
+The argument passed to `socket.setMulticastTTL()` is a number of hops
between 0 and 255. The default on most systems is `1` but can vary.
### socket.setRecvBufferSize(size)
diff --git a/doc/api/esm.md b/doc/api/esm.md
index ef9adbdc73..08d3ea6b30 100644
--- a/doc/api/esm.md
+++ b/doc/api/esm.md
@@ -206,7 +206,7 @@ export async function dynamicInstantiate(url) {
```
With the list of module exports provided upfront, the `execute` function will
-then be called at the exact point of module evalutation order for that module
+then be called at the exact point of module evaluation order for that module
in the import tree.
[Node.js EP for ES Modules]: https://github.com/nodejs/node-eps/blob/master/002-es-modules.md
diff --git a/doc/api/inspector.md b/doc/api/inspector.md
index a3426d4b5d..b6f702f0dd 100644
--- a/doc/api/inspector.md
+++ b/doc/api/inspector.md
@@ -22,7 +22,7 @@ const inspector = require('inspector');
to false.
Activate inspector on host and port. Equivalent to `node
---inspect=[[host:]port]`, but can be done programatically after node has
+--inspect=[[host:]port]`, but can be done programmatically after node has
started.
If wait is `true`, will block until a client has connected to the inspect port
diff --git a/doc/api/v8.md b/doc/api/v8.md
index 64c9be1a88..c9d2512fdd 100644
--- a/doc/api/v8.md
+++ b/doc/api/v8.md
@@ -269,7 +269,7 @@ by subclasses.
This method is called to generate error objects that will be thrown when an
object can not be cloned.
-This method defaults to the [`Error`][] constructor and can be be overridden on
+This method defaults to the [`Error`][] constructor and can be overridden on
subclasses.
#### serializer.\_getSharedArrayBufferId(sharedArrayBuffer)