diff options
Diffstat (limited to 'ext/node/polyfills/internal/util/inspect.mjs')
-rw-r--r-- | ext/node/polyfills/internal/util/inspect.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |