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 <[email protected]>
Reviewed-By: Michael Dawson <[email protected]>
Reviewed-By: Chengzhong Wu <[email protected]>
  • Loading branch information
kevindavies8 committed Oct 31, 2019
1 parent fa40213 commit 40c56aa
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 40c56aa

Please sign in to comment.