From 2d39369ee506b4e3fa52a8ae6a0b583f105faf1a Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 7 Mar 2020 17:35:00 -0800 Subject: [PATCH] doc: remove personal pronoun usage in addons.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-By: Ruben Bridgewater Reviewed-By: Trivikram Kamat --- doc/api/addons.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/addons.md b/doc/api/addons.md index 93f99afbeee7e7..e6b5704e8fbdd5 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,