8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5936f7c commit 5b04537Copy full SHA for 5b04537
doc/api/_toc.md
@@ -7,7 +7,7 @@
7
8
* [Assertion Testing](assert.html)
9
* [Buffer](buffer.html)
10
-* [C/C++ Addons](addons.html)
+* [C++ Addons](addons.html)
11
* [C/C++ Addons - N-API](n-api.html)
12
* [Child Processes](child_process.html)
13
* [Cluster](cluster.html)
doc/api/addons.md
@@ -1,8 +1,8 @@
1
-# C/C++ Addons
+# C++ Addons
2
3
<!--introduced_in=v0.10.0-->
4
5
-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
6
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.
@@ -28,7 +28,7 @@ involving knowledge of several components and APIs :
28
off-loading work via libuv to non-blocking system operations, worker threads
29
or a custom use of libuv's threads.
30
31
- - 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
32
that Addons can use — the most important of which is the
33
`node::ObjectWrap` class.
34
doc/api/n-api.md
@@ -12,7 +12,7 @@ compiled for one version to run on later versions of Node.js without
recompilation.
14
Addons are built/packaged with the same approach/tools
15
-outlined in the section titled [C/C++ Addons](addons.html).
+outlined in the section titled [C++ Addons](addons.html).
16
The only difference is the set of APIs that are used by the native code.
17
Instead of using the V8 or [Native Abstractions for Node.js][] APIs,
18
the functions available in the N-API are used.