From 9e955a802bc1cd0c6d8147f7042e73c3e1559755 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Wed, 30 Oct 2019 22:29:09 -0300 Subject: [PATCH] doc: change node.js to Node.js per guideline (#579) PR-URL: https://github.com/nodejs/node-addon-api/pull/579 Reviewed-By: NickNaso Reviewed-By: Michael Dawson Reviewed-By: Chengzhong Wu --- doc/async_operations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/async_operations.md b/doc/async_operations.md index 8506e1639..064a9c50f 100644 --- a/doc/async_operations.md +++ b/doc/async_operations.md @@ -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.