diff options
Diffstat (limited to 'std/node/module.ts')
-rw-r--r-- | std/node/module.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/node/module.ts b/std/node/module.ts index f777e658f..e73eb4d5d 100644 --- a/std/node/module.ts +++ b/std/node/module.ts @@ -1000,7 +1000,7 @@ function emitCircularRequireWarning(prop: any): void { } // A Proxy that can be used as the prototype of a module.exports object and -// warns when non-existend properties are accessed. +// warns when non-existent properties are accessed. const CircularRequirePrototypeWarningProxy = new Proxy( {}, { |