Change implied variable name for consistency (#50)

This commit is contained in:
Bow Archer 2021-11-12 14:41:22 -08:00 committed by GitHub
parent 2d09badb68
commit 14e3a9d711
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -878,7 +878,7 @@ function isEmailUsed(email: string): boolean {
// ...
}
if (!isEmailUsed(node)) {
if (!isEmailUsed(email)) {
// ...
}
```