summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/api/n-api.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/n-api.md b/doc/api/n-api.md
index 06ee993092..f77d0d9f77 100644
--- a/doc/api/n-api.md
+++ b/doc/api/n-api.md
@@ -4380,7 +4380,7 @@ allows them to avoid blocking overall execution of the Node.js application.
N-API provides an ABI-stable interface for these
supporting functions which covers the most common asynchronous use cases.
-N-API defines the `napi_work` structure which is used to manage
+N-API defines the `napi_async_work` structure which is used to manage
asynchronous workers. Instances are created/deleted with
[`napi_create_async_work`][] and [`napi_delete_async_work`][].
@@ -4947,7 +4947,7 @@ napiVersion: 2
```C
NAPI_EXTERN napi_status napi_get_uv_event_loop(napi_env env,
- uv_loop_t** loop);
+ struct uv_loop_s** loop);
```
* `[in] env`: The environment that the API is invoked under.