@@ -111,7 +111,7 @@ versions:
111
111
```
112
112
113
113
Thus, 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
115
115
116
116
```c
117
117
#include <node_api.h>
@@ -366,7 +366,7 @@ From the perspective of a native addon this means that the bindings it provides
366
366
may be called multiple times, from multiple contexts, and even concurrently from
367
367
multiple threads.
368
368
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
370
370
their entire life cycle such that the state must be unique to each instance of
371
371
the addon.
372
372
@@ -5163,7 +5163,7 @@ return status of `napi_closing` in response to a call to
5163
5163
should be the last API call made in conjunction with a given
5164
5164
`napi_threadsafe_function`, because after the call completes, there is no
5165
5165
guarantee 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
5167
5167
after receiving a return value of `napi_closing` in response to a call to
5168
5168
`napi_call_threadsafe_function`. Data associated with the
5169
5169
`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()`
5186
5186
will return `napi_closing`, thus informing the threads that it is no longer
5187
5187
possible to make asynchronous calls to the thread-safe function. This can be
5188
5188
used 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
5191
5191
be allocated.**
5192
5192
5193
5193
### Deciding whether to keep the process running
0 commit comments