Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2016-06-29 21:38:40 +0300
committerAnna Henningsen <anna@addaleax.net>2016-06-30 08:34:56 +0300
commit02afb057b581e49e2b08a13db4d624dbc135d3b7 (patch)
treef9cb6782c105327495897ac82c1c21e719ccf5a4 /doc/api/addons.md
parent7de59ef9258ede7684ff0882a7964db8f0226533 (diff)
doc: fixing minor typo in AtExit hooks section
PR-URL: https://github.com/nodejs/node/pull/7485 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'doc/api/addons.md')
-rw-r--r--doc/api/addons.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/addons.md b/doc/api/addons.md
index 3dacf88064b..1187eafdc33 100644
--- a/doc/api/addons.md
+++ b/doc/api/addons.md
@@ -1019,7 +1019,7 @@ console.log(result); // 30
### AtExit hooks
An "AtExit" hook is a function that is invoked after the Node.js event loop
-has ended by before the JavaScript VM is terminated and Node.js shuts down.
+has ended but before the JavaScript VM is terminated and Node.js shuts down.
"AtExit" hooks are registered using the `node::AtExit` API.
#### void AtExit(callback, args)