diff options
author | Rich Trott <rtrott@gmail.com> | 2020-03-07 17:35:00 -0800 |
---|---|---|
committer | Rich Trott <rtrott@gmail.com> | 2020-03-09 19:47:24 -0700 |
commit | 36ce039347e94a9a0f8239c7bc639868e496258d (patch) | |
tree | 62a25640a82f4ce96f070fa96e8b66efa331b6a1 | |
parent | 66e32ff64aef3580eb7ba592323312ae42bbb439 (diff) | |
download | node-new-36ce039347e94a9a0f8239c7bc639868e496258d.tar.gz |
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>
-rw-r--r-- | doc/api/addons.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/addons.md b/doc/api/addons.md index 93f99afbee..e6b5704e8f 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, |