diff options
author | youngwendy <166624921+youngwendy@users.noreply.github.com> | 2024-04-12 22:33:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-12 08:33:43 -0600 |
commit | 84e198f0d0285077c228a2ea41e927103ec4119f (patch) | |
tree | 3743787699b5686cc16eabf29c1bc59a6ba55ffd /ext/node/polyfills/internal/util | |
parent | 650db71e35970af85a3f0a0ca89125088a372013 (diff) |
chore: remove repetitive words (#23341)
Signed-off-by: youngwendy <clonefetch@outlook.com>
Diffstat (limited to 'ext/node/polyfills/internal/util')
-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; } |