mirror of
https://github.com/labs42io/clean-code-typescript.git
synced 2025-05-09 12:03:33 +00:00
Change implied variable name for consistency (#50)
This commit is contained in:
parent
2d09badb68
commit
14e3a9d711
1 changed files with 1 additions and 1 deletions
|
@ -878,7 +878,7 @@ function isEmailUsed(email: string): boolean {
|
|||
// ...
|
||||
}
|
||||
|
||||
if (!isEmailUsed(node)) {
|
||||
if (!isEmailUsed(email)) {
|
||||
// ...
|
||||
}
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue