From f28dd8e680017ee793b7ae8f1fda9fadb4b34d53 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Tue, 13 Jun 2017 15:54:41 -0700 Subject: [PATCH] doc: fixes a typo in the async_hooks documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit > Generally it will correspond the name of the resource's constructor. should read "Generally, it will correspond to the name..." PR-URL: https://github.com/nodejs/node/pull/13666 Fixes: https://github.com/nodejs/node/issues/13663 Reviewed-By: Refael Ackermann Reviewed-By: James M Snell Reviewed-By: Colin Ihrig Reviewed-By: Tobias Nießen Reviewed-By: Vse Mozhet Byt --- 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 d584286d782eea..d6407dea2837b3 100644 --- a/doc/api/async_hooks.md +++ b/doc/api/async_hooks.md @@ -192,8 +192,8 @@ Every new resource is assigned a unique ID. ###### `type` The `type` is a string that represents the type of resource that caused -`init` to be called. Generally it will correspond the name of the resource's -constructor. +`init` to be called. Generally, it will correspond to the name of the +resource's constructor. ``` FSEVENTWRAP, FSREQWRAP, GETADDRINFOREQWRAP, GETNAMEINFOREQWRAP, HTTPPARSER,