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>
This commit is contained in:
Daniel Bevenius 2016-06-29 20:38:40 +02:00 committed by Anna Henningsen
parent 7de59ef925
commit 02afb057b5
No known key found for this signature in database
GPG Key ID: D8B9F5AEAE84E4CF

View File

@ -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)