summaryrefslogtreecommitdiff
path: root/doc/api/addons.md
diff options
context:
space:
mode:
authorBeth Griggs <Bethany.Griggs@uk.ibm.com>2017-05-08 10:36:41 +0100
committerSam Roberts <vieuxtech@gmail.com>2017-05-11 11:09:06 -0700
commitabfd4bf9dfbf4e9817fe2c0b08476f505c4012d1 (patch)
tree47e3675434d670eb9191bdc6154b313292114541 /doc/api/addons.md
parent631cb42b4e2e067d82bd0c11b9317caf3b47e14a (diff)
downloadandroid-node-v8-abfd4bf9dfbf4e9817fe2c0b08476f505c4012d1.tar.gz
android-node-v8-abfd4bf9dfbf4e9817fe2c0b08476f505c4012d1.tar.bz2
android-node-v8-abfd4bf9dfbf4e9817fe2c0b08476f505c4012d1.zip
doc: clarify node.js addons are c++
PR-URL: https://github.com/nodejs/node/pull/12898 Fixes: https://github.com/nodejs/node/issues/7129 Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Diffstat (limited to 'doc/api/addons.md')
-rw-r--r--doc/api/addons.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/addons.md b/doc/api/addons.md
index 9737d7f44e..1799cf7e5d 100644
--- a/doc/api/addons.md
+++ b/doc/api/addons.md
@@ -1,6 +1,6 @@
-# C/C++ Addons
+# C++ Addons
-Node.js Addons are dynamically-linked shared objects, written in C or C++, that
+Node.js Addons are dynamically-linked shared objects, written in C++, that
can be loaded into Node.js using the [`require()`][require] function, and used
just as if they were an ordinary Node.js module. They are used primarily to
provide an interface between JavaScript running in Node.js and C/C++ libraries.
@@ -26,7 +26,7 @@ involving knowledge of several components and APIs :
off-loading work via libuv to non-blocking system operations, worker threads
or a custom use of libuv's threads.
- - Internal Node.js libraries. Node.js itself exports a number of C/C++ APIs
+ - Internal Node.js libraries. Node.js itself exports a number of C++ APIs
that Addons can use &mdash; the most important of which is the
`node::ObjectWrap` class.