Browse Source

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>
v4.x
Daniel Bevenius 9 years ago
committed by Myles Borins
parent
commit
f8fe474825
  1. 2
      doc/api/addons.md

2
doc/api/addons.md

@ -1003,7 +1003,7 @@ console.log(result); // 30
### AtExit hooks ### AtExit hooks
An "AtExit" hook is a function that is invoked after the Node.js event loop 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. "AtExit" hooks are registered using the `node::AtExit` API.
#### void AtExit(callback, args) #### void AtExit(callback, args)

Loading…
Cancel
Save