From f27ae6ef46e9bdd196fdf5458cf6d399210097ff Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 11 May 2020 11:45:20 +0200 Subject: [PATCH] src: fix typo in comment in async_wrap.cc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/33350 Reviewed-By: Richard Lau Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Juan José Arboleda Reviewed-By: Benjamin Gruenbaum Reviewed-By: Rich Trott --- src/async_wrap.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/async_wrap.cc b/src/async_wrap.cc index 42837e09818ec2..6722aa084b91b9 100644 --- a/src/async_wrap.cc +++ b/src/async_wrap.cc @@ -606,7 +606,7 @@ AsyncWrap::AsyncWrap(Environment* env, Local 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