From 005b601aa1f62d435c6006076ca2775178f9f6a0 Mon Sep 17 00:00:00 2001 From: NickNaso Date: Tue, 26 Nov 2019 11:59:41 +0100 Subject: [PATCH] doc: fix up N-API doc PR-URL: https://github.com/nodejs/node/pull/30656 Reviewed-By: Michael Dawson Reviewed-By: Chengzhong Wu --- doc/api/n-api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/n-api.md b/doc/api/n-api.md index d2ce6677d627d6..ef480c7730fac7 100644 --- a/doc/api/n-api.md +++ b/doc/api/n-api.md @@ -4355,7 +4355,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`][]. @@ -4922,7 +4922,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.