From dff842a8227275a491eb1921f409bc7aa1ebc5a9 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Tue, 13 Jun 2017 15:54:41 -0700 Subject: [PATCH 1/2] doc: fixes a typo in the async_hooks documentation > Generally it will correspond the name of the resource's constructor. should read "will correspond with..." Fixes: https://github.com/nodejs/node/issues/13663 --- 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 b9fd3e3139d252..fea307e11a3c30 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 with the name of the +resource's constructor. ``` FSEVENTWRAP, FSREQWRAP, GETADDRINFOREQWRAP, GETNAMEINFOREQWRAP, HTTPPARSER, From 843cec387aea8ed5316fb0ec13f63bc11a91cc2d Mon Sep 17 00:00:00 2001 From: Chris Young Date: Wed, 14 Jun 2017 10:55:54 -0700 Subject: [PATCH 2/2] doc: fixes a typo in the async_hooks documentation > Generally it will correspond the name of the resource's constructor. should read "Generally, it will correspond to the name..." Fixes: https://github.com/nodejs/node/issues/13663 --- 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 fea307e11a3c30..6fd3ec13186174 100644 --- a/doc/api/async_hooks.md +++ b/doc/api/async_hooks.md @@ -192,7 +192,7 @@ 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 with the name of the +`init` to be called. Generally, it will correspond to the name of the resource's constructor. ```