Skip to content

Commit 9e955a8

Browse files
tniessenmhdawson
authored andcommitted
doc: change node.js to Node.js per guideline (#579)
PR-URL: #579 Reviewed-By: NickNaso <nicoladelgobbo@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
1 parent b42e21e commit 9e955a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/async_operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Node.js native add-ons often need to execute long running tasks and to avoid
44
blocking the **event loop** they have to run them asynchronously from the
55
**event loop**.
66
In the Node.js model of execution the event loop thread represents the thread
7-
where JavaScript code is executing. The node.js guidance is to avoid blocking
7+
where JavaScript code is executing. The Node.js guidance is to avoid blocking
88
other work queued on the event loop thread. Therefore, we need to do this work on
99
another thread.
1010

0 commit comments

Comments
 (0)