@@ -111,7 +111,7 @@ versions:
111111 ```
112112
113113Thus, for an addon to remain ABI-compatible across Node.js major versions, it
114- must make use exclusively of N-API by restricting itself to using
114+ must use N-API exclusively by restricting itself to using
115115
116116```c
117117#include <node_api.h>
@@ -366,7 +366,7 @@ From the perspective of a native addon this means that the bindings it provides
366366may be called multiple times, from multiple contexts, and even concurrently from
367367multiple threads.
368368
369- Native addons may need to allocate global state of which they make use during
369+ Native addons may need to allocate global state which they use during
370370their entire life cycle such that the state must be unique to each instance of
371371the addon.
372372
@@ -5163,7 +5163,7 @@ return status of `napi_closing` in response to a call to
51635163should be the last API call made in conjunction with a given
51645164`napi_threadsafe_function`, because after the call completes, there is no
51655165guarantee that the `napi_threadsafe_function` is still allocated. For the same
5166- reason, do not make use of a thread-safe function
5166+ reason, do not use a thread-safe function
51675167after receiving a return value of `napi_closing` in response to a call to
51685168`napi_call_threadsafe_function`. Data associated with the
51695169`napi_threadsafe_function` can be freed in its `napi_finalize` callback which
@@ -5186,8 +5186,8 @@ reference count reaches zero. In particular, `napi_call_threadsafe_function()`
51865186will return `napi_closing`, thus informing the threads that it is no longer
51875187possible to make asynchronous calls to the thread-safe function. This can be
51885188used as a criterion for terminating the thread. **Upon receiving a return value
5189- of `napi_closing` from `napi_call_threadsafe_function()` a thread must make no
5190- further use of the thread-safe function because it is no longer guaranteed to
5189+ of `napi_closing` from `napi_call_threadsafe_function()` a thread must not use
5190+ the thread-safe function anymore because it is no longer guaranteed to
51915191be allocated.**
51925192
51935193### Deciding whether to keep the process running
0 commit comments