From 8135f3616df2b7e5932de12d6862eb7bb9a7b7b3 Mon Sep 17 00:00:00 2001 From: Daeyeon Jeong Date: Mon, 8 Jul 2024 23:39:37 +0900 Subject: [PATCH] src: fix typo in node.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Daeyeon Jeong PR-URL: https://github.com/nodejs/node/pull/53759 Reviewed-By: Richard Lau Reviewed-By: Tobias Nießen Reviewed-By: Ulises Gascón Reviewed-By: Deokjin Kim --- src/node.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node.h b/src/node.h index 7005c2b4449986..6373adacb62845 100644 --- a/src/node.h +++ b/src/node.h @@ -658,8 +658,8 @@ enum Flags : uint64_t { // inspector in situations where one has already been created, // e.g. Blink's in Chromium. kNoCreateInspector = 1 << 9, - // Controls where or not the InspectorAgent for this Environment should - // call StartDebugSignalHandler. This control is needed by embedders who may + // Controls whether or not the InspectorAgent for this Environment should + // call StartDebugSignalHandler. This control is needed by embedders who may // not want to allow other processes to start the V8 inspector. kNoStartDebugSignalHandler = 1 << 10, // Controls whether the InspectorAgent created for this Environment waits for