Skip to content

Commit

Permalink
doc: change node.js to Node.js per guideline (#579)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
tniessen authored and mhdawson committed Oct 31, 2019
1 parent b42e21e commit 9e955a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/async_operations.md
Expand Up @@ -4,7 +4,7 @@ Node.js native add-ons often need to execute long running tasks and to avoid
blocking the **event loop** they have to run them asynchronously from the
**event loop**.
In the Node.js model of execution the event loop thread represents the thread
where JavaScript code is executing. The node.js guidance is to avoid blocking
where JavaScript code is executing. The Node.js guidance is to avoid blocking
other work queued on the event loop thread. Therefore, we need to do this work on
another thread.

Expand Down

0 comments on commit 9e955a8

Please sign in to comment.