◐ Shell
clean mode source ↗

doc: eliminate _you_ from N-API doc · nodejs/node@bc20ec0

Original file line numberDiff line numberDiff line change

@@ -536,7 +536,7 @@ napi_status napi_fatal_exception(napi_env env, napi_value err);

536536

```

537537
538538

- `[in] env`: The environment that the API is invoked under.

539-

- `[in] err`: The error you want to pass to `'uncaughtException'`.

539+

- `[in] err`: The error that is passed to `'uncaughtException'`.

540540
541541

Trigger an `'uncaughtException'` in JavaScript. Useful if an async

542542

callback throws an exception with no way to recover.

@@ -1019,9 +1019,8 @@ napi_value Init(napi_env env, napi_value exports) {

10191019

}

10201020

```

10211021
1022-

If you expect that your module will be loaded multiple times during the lifetime

1023-

of the Node.js process, you can use the `NAPI_MODULE_INIT` macro to initialize

1024-

your module:

1022+

If the module will be loaded multiple times during the lifetime of the Node.js

1023+

process, use the `NAPI_MODULE_INIT` macro to initialize the module:

10251024
10261025

```C

10271026

NAPI_MODULE_INIT() {