Skip to content

Commit 181b897

Browse files
sreepurnajastiMylesBorins
authored andcommitted
doc: fix duplicate words & spellings in docs
PR-URL: #17923 Reviewed-By: Vse Mozhet Byt <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Jon Moss <[email protected]>
1 parent 66c1a03 commit 181b897

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

doc/api/async_hooks.md

+1-1
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

+2-2
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ export async function dynamicInstantiate(url) {
206206
```
207207

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

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

doc/api/inspector.md

+1-1
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ by subclasses.
269269
This method is called to generate error objects that will be thrown when an
270270
object can not be cloned.
271271

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

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

0 commit comments

Comments
 (0)