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: nodejs/node-addon-api#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
wroy7860 committed Oct 31, 2019
1 parent daae230 commit bf584e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/async_operations.md
Original file line number Diff line number Diff line change
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 bf584e4

Please sign in to comment.