@@ -9,7 +9,7 @@ _Addons_ are dynamically-linked shared objects written in C++. The
99Addons provide an interface between JavaScript and C/C++ libraries.
1010
1111There 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
1313direct access to functionality which is not exposed by Node-API, use Node-API.
1414Refer to [ C/C++ addons with Node-API] ( n-api.md ) for more information on
1515Node-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
397397addons are required to link to V8 and may link to any of the other dependencies
398398as 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