We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b42e21e commit 9e955a8Copy full SHA for 9e955a8
doc/async_operations.md
@@ -4,7 +4,7 @@ Node.js native add-ons often need to execute long running tasks and to avoid
4
blocking the **event loop** they have to run them asynchronously from the
5
**event loop**.
6
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
+where JavaScript code is executing. The Node.js guidance is to avoid blocking
8
other work queued on the event loop thread. Therefore, we need to do this work on
9
another thread.
10
0 commit comments