From 84e198f0d0285077c228a2ea41e927103ec4119f Mon Sep 17 00:00:00 2001 From: youngwendy <166624921+youngwendy@users.noreply.github.com> Date: Fri, 12 Apr 2024 22:33:43 +0800 Subject: chore: remove repetitive words (#23341) Signed-off-by: youngwendy --- ext/node/polyfills/internal/util/inspect.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/node/polyfills/internal/util') diff --git a/ext/node/polyfills/internal/util/inspect.mjs b/ext/node/polyfills/internal/util/inspect.mjs index 2f9167dfb..20974db59 100644 --- a/ext/node/polyfills/internal/util/inspect.mjs +++ b/ext/node/polyfills/internal/util/inspect.mjs @@ -346,7 +346,7 @@ function hasBuiltInToString(value) { return true; } - // The object has a own `toString` property. Thus it's not not a built-in one. + // The object has a own `toString` property. Thus it's not a built-in one. if (Object.prototype.hasOwnProperty.call(value, "toString")) { return false; } -- cgit v1.2.3