Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc/api
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2020-03-08 04:35:00 +0300
committerRich Trott <rtrott@gmail.com>2020-03-10 05:47:24 +0300
commit36ce039347e94a9a0f8239c7bc639868e496258d (patch)
tree62a25640a82f4ce96f070fa96e8b66efa331b6a1 /doc/api
parent66e32ff64aef3580eb7ba592323312ae42bbb439 (diff)
doc: remove personal pronoun usage in addons.md
Per our style guide, avoid personal pronouns (I, you, we, etc.) in reference documentation. PR-URL: https://github.com/nodejs/node/pull/32142 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/addons.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/addons.md b/doc/api/addons.md
index 93f99afbeee..e6b5704e8fb 100644
--- a/doc/api/addons.md
+++ b/doc/api/addons.md
@@ -8,8 +8,8 @@ Addons are dynamically-linked shared objects written in C++. The
Addons provide an interface between JavaScript and C/C++ libraries.
There are three options for implementing Addons: N-API, nan, or direct
-use of internal V8, libuv and Node.js libraries. Unless you need direct
-access to functionality which is not exposed by N-API, use N-API.
+use of internal V8, libuv and Node.js libraries. Unless there is a need for
+direct access to functionality which is not exposed by N-API, use N-API.
Refer to [C/C++ Addons with N-API](n-api.html) for more information on N-API.
When not using N-API, implementing Addons is complicated,