File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff 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
541541Trigger an `'uncaughtException'` in JavaScript. Useful if an async
542542callback 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
10271026NAPI_MODULE_INIT() {
You can’t perform that action at this time.
0 commit comments