Skip to content

Commit bf584e4

Browse files
committed
doc: change node.js to Node.js per guideline (#579)
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>
1 parent daae230 commit bf584e4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)