summaryrefslogtreecommitdiff
path: root/src/async_wrap.cc
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2020-05-11 11:45:20 +0200
committerAnna Henningsen <anna@addaleax.net>2020-05-12 02:04:31 +0200
commit86f8f47cc346c3aa386919b239bd10f58bcfb351 (patch)
tree0523d2a2089ecb25f40b4fa2f2edcd45b6008725 /src/async_wrap.cc
parent5ded044deaad44ea4b87b321e02190cdb12fe33a (diff)
downloadnode-new-86f8f47cc346c3aa386919b239bd10f58bcfb351.tar.gz
src: fix typo in comment in async_wrap.cc
PR-URL: https://github.com/nodejs/node/pull/33350 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'src/async_wrap.cc')
-rw-r--r--src/async_wrap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/async_wrap.cc b/src/async_wrap.cc
index 42e0171a9c..602b0e9f5d 100644
--- a/src/async_wrap.cc
+++ b/src/async_wrap.cc
@@ -702,7 +702,7 @@ AsyncWrap::AsyncWrap(Environment* env, Local<Object> object)
// This method is necessary to work around one specific problem:
// Before the init() hook runs, if there is one, the BaseObject() constructor
-// registers this object with the Environment for finilization and debugging
+// registers this object with the Environment for finalization and debugging
// purposes.
// If the Environment decides to inspect this object for debugging, it tries to
// call virtual methods on this object that are only (meaningfully) implemented