doc: fix duplicate words & spellings in docs

PR-URL: https://github.com/nodejs/node/pull/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>
This commit is contained in:
sreepurnajasti 2017-12-31 15:15:43 +05:30 committed by Tobias Nießen
parent 1fa4f5df3a
commit b21e3f0711
No known key found for this signature in database
GPG Key ID: 718207F8FD156B70
5 changed files with 6 additions and 6 deletions

View File

@ -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.

View File

@ -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)

View File

@ -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

View File

@ -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

View File

@ -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)