Skip to content

Commit 0e99139

Browse files
tniessenjuanarbol
authored andcommitted
doc: use serial comma in addons docs
Refs: #11321 Refs: #17384 PR-URL: #44482 Reviewed-By: Filip Skokan <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
1 parent 8ea3e6f commit 0e99139

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/api/addons.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ _Addons_ are dynamically-linked shared objects written in C++. The
99
Addons provide an interface between JavaScript and C/C++ libraries.
1010

1111
There are three options for implementing addons: Node-API, nan, or direct
12-
use of internal V8, libuv and Node.js libraries. Unless there is a need for
12+
use of internal V8, libuv, and Node.js libraries. Unless there is a need for
1313
direct access to functionality which is not exposed by Node-API, use Node-API.
1414
Refer to [C/C++ addons with Node-API](n-api.md) for more information on
1515
Node-API.
@@ -40,7 +40,7 @@ involving knowledge of several components and APIs:
4040

4141
* Node.js includes other statically linked libraries including OpenSSL. These
4242
other libraries are located in the `deps/` directory in the Node.js source
43-
tree. Only the libuv, OpenSSL, V8 and zlib symbols are purposefully
43+
tree. Only the libuv, OpenSSL, V8, and zlib symbols are purposefully
4444
re-exported by Node.js and may be used to various extents by addons. See
4545
[Linking to libraries included with Node.js][] for additional information.
4646

@@ -393,7 +393,7 @@ try {
393393

394394
### Linking to libraries included with Node.js
395395

396-
Node.js uses statically linked libraries such as V8, libuv and OpenSSL. All
396+
Node.js uses statically linked libraries such as V8, libuv, and OpenSSL. All
397397
addons are required to link to V8 and may link to any of the other dependencies
398398
as well. Typically, this is as simple as including the appropriate
399399
`#include <...>` statements (e.g. `#include <v8.h>`) and `node-gyp` will locate

0 commit comments

Comments
 (0)