From e692adf3cf29eb33fafa8be0e1bfa1b8aee404fa Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 4 Aug 2020 16:23:26 -0700 Subject: [PATCH] doc: use _Class Method_ in async_hooks.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We use _Class Method_ rather than _static_ in documentation headers in buffer.md and crypto.md. We use _static_ in one place in async_hooks.md. Change to _Class Method_ for consistency. PR-URL: https://github.com/nodejs/node/pull/34626 Reviewed-By: Anna Henningsen Reviewed-By: James M Snell Reviewed-By: Gerhard Stöbich Reviewed-By: Joyee Cheung --- doc/api/async_hooks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md index ebab01f6f79ed4..f64b3b4e69376d 100644 --- a/doc/api/async_hooks.md +++ b/doc/api/async_hooks.md @@ -729,7 +729,7 @@ class DBQuery extends AsyncResource { } ``` -#### `static AsyncResource.bind(fn[, type])` +#### Class Method: `AsyncResource.bind(fn[, type])`