From 2262962ab7ece49e17f86294ab04e73aa3842e08 Mon Sep 17 00:00:00 2001 From: Andrey Pechkurov Date: Tue, 5 May 2020 17:02:39 +0300 Subject: [PATCH] doc: remove AsyncWrap mentions from async_hooks.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit AsyncWrap is a private API and should not be mentioned in the documentation. PR-URL: https://github.com/nodejs/node/pull/33249 Reviewed-By: Anna Henningsen Reviewed-By: Michaël Zasso Reviewed-By: Chengzhong Wu Reviewed-By: Gerhard Stöbich Reviewed-By: Benjamin Gruenbaum Reviewed-By: James M Snell --- doc/api/async_hooks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md index d071820a298369..a9351a1e1c8bf2 100644 --- a/doc/api/async_hooks.md +++ b/doc/api/async_hooks.md @@ -68,7 +68,7 @@ function before(asyncId) { } // After is called just after the resource's callback has finished. function after(asyncId) { } -// Destroy is called when an AsyncWrap instance is destroyed. +// Destroy is called when the resource is destroyed. function destroy(asyncId) { } // promiseResolve is called only for promise resources, when the @@ -635,7 +635,7 @@ see the details of the V8 [PromiseHooks][] API. Library developers that handle their own asynchronous resources performing tasks like I/O, connection pooling, or managing callback queues may use the -`AsyncWrap` JavaScript API so that all the appropriate callbacks are called. +`AsyncResource` JavaScript API so that all the appropriate callbacks are called. ### Class: `AsyncResource`