From 8d18aed59e87924f7e7826968fdfbee40b1f4e6f Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Wed, 29 Jun 2016 20:38:40 +0200 Subject: [PATCH] doc: fixing minor typo in AtExit hooks section PR-URL: https://github.com/nodejs/node/pull/7485 Reviewed-By: Brian White Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Anna Henningsen --- doc/api/addons.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/addons.md b/doc/api/addons.md index 3dacf88064b858..1187eafdc33a63 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)