]> git.proxmox.com Git - pve-eslint.git/blobdiff - eslint/docs/rules/no-implicit-globals.md
import 8.3.0 source
[pve-eslint.git] / eslint / docs / rules / no-implicit-globals.md
index 04a3cd3fdbbff2f75118e325699f7e81c3d8a183..479d958d62c59b82560ff7a71c43adbcf6bbc0ca 100644 (file)
@@ -70,7 +70,7 @@ function bar() {}
 ### Global variable leaks
 
 When the code is not in `strict` mode, an assignment to an undeclared variable creates
-a new global variable. This will happen even is the code is in a function.
+a new global variable. This will happen even if the code is in a function.
 
 This does not apply to ES modules since the module code is implicitly in `strict` mode.