Skip to content

Commit f393eb1

Browse files
sreepurnajastigibfahn
authored andcommitted
doc: fix duplicate words & spellings in docs
PR-URL: #17923 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me>
1 parent a7f9e12 commit f393eb1

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

doc/api/async_hooks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ const server = net.createServer((conn) => {
526526

527527
## JavaScript Embedder API
528528

529-
Library developers that handle their own asychronous resources performing tasks
529+
Library developers that handle their own asynchronous resources performing tasks
530530
like I/O, connection pooling, or managing callback queues may use the `AsyncWrap`
531531
JavaScript API so that all the appropriate callbacks are called.
532532

doc/api/dgram.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ added: v8.6.0
392392

393393
* `multicastInterface` {String}
394394

395-
*Note: All references to scope in this section are refering to
395+
*Note: All references to scope in this section are referring to
396396
[IPv6 Zone Indices][], which are defined by [RFC 4007][]. In string form, an IP
397397
with a scope index is written as `'IP%scope'` where scope is an interface name or
398398
interface number.*
@@ -486,7 +486,7 @@ packet is allowed to travel through, specifically for multicast traffic. Each
486486
router or gateway that forwards a packet decrements the TTL. If the TTL is
487487
decremented to 0 by a router, it will not be forwarded.
488488

489-
The argument passed to to `socket.setMulticastTTL()` is a number of hops
489+
The argument passed to `socket.setMulticastTTL()` is a number of hops
490490
between 0 and 255. The default on most systems is `1` but can vary.
491491

492492
### socket.setRecvBufferSize(size)

doc/api/esm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ export async function dynamicInstantiate(url) {
207207
```
208208

209209
With the list of module exports provided upfront, the `execute` function will
210-
then be called at the exact point of module evalutation order for that module
210+
then be called at the exact point of module evaluation order for that module
211211
in the import tree.
212212

213213
[Node.js EP for ES Modules]: https://github.com/nodejs/node-eps/blob/master/002-es-modules.md

doc/api/inspector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const inspector = require('inspector');
2222
to false.
2323

2424
Activate inspector on host and port. Equivalent to `node
25-
--inspect=[[host:]port]`, but can be done programatically after node has
25+
--inspect=[[host:]port]`, but can be done programmatically after node has
2626
started.
2727

2828
If wait is `true`, will block until a client has connected to the inspect port

doc/api/v8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ by subclasses.
268268
This method is called to generate error objects that will be thrown when an
269269
object can not be cloned.
270270

271-
This method defaults to the [`Error`][] constructor and can be be overridden on
271+
This method defaults to the [`Error`][] constructor and can be overridden on
272272
subclasses.
273273

274274
#### serializer.\_getSharedArrayBufferId(sharedArrayBuffer)

0 commit comments

Comments
 (0)