From 4970e2bec8a15739739ac4317158233c8cf32c6d Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 17 Jun 2018 22:38:24 -0700 Subject: [PATCH] doc: eliminate _you_ from N-API doc The STYLE_GUIDE indicates that personal pronouns like "you" should be avoided in reference documentation. Remove "you" from N-API doc. PR-URL: https://github.com/nodejs/node/pull/21382 Reviewed-By: Luigi Pinca Reviewed-By: Richard Lau Reviewed-By: Ruben Bridgewater Reviewed-By: Colin Ihrig Reviewed-By: Vse Mozhet Byt Reviewed-By: Michael Dawson --- doc/api/n-api.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/doc/api/n-api.md b/doc/api/n-api.md index ef2396409b45a3..5a9c81e3698ba3 100644 --- a/doc/api/n-api.md +++ b/doc/api/n-api.md @@ -536,7 +536,7 @@ napi_status napi_fatal_exception(napi_env env, napi_value err); ``` - `[in] env`: The environment that the API is invoked under. -- `[in] err`: The error you want to pass to `'uncaughtException'`. +- `[in] err`: The error that is passed to `'uncaughtException'`. Trigger an `'uncaughtException'` in JavaScript. Useful if an async callback throws an exception with no way to recover. @@ -1019,9 +1019,8 @@ napi_value Init(napi_env env, napi_value exports) { } ``` -If you expect that your module will be loaded multiple times during the lifetime -of the Node.js process, you can use the `NAPI_MODULE_INIT` macro to initialize -your module: +If the module will be loaded multiple times during the lifetime of the Node.js +process, use the `NAPI_MODULE_INIT` macro to initialize the module: ```C NAPI_MODULE_INIT() {