Skip to content

Commit

Permalink
docs: add an incorrect code example in for-direction (#15434)
Browse files Browse the repository at this point in the history
  • Loading branch information
HolgerJeromin committed Dec 17, 2021
1 parent 981fb48 commit 314c84c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/rules/for-direction.md
Expand Up @@ -13,6 +13,9 @@ for (var i = 0; i < 10; i--) {

for (var i = 10; i >= 0; i++) {
}

for (var i = 0; i > 10; i++) {
}
```

Examples of **correct** code for this rule:
Expand Down

0 comments on commit 314c84c

Please sign in to comment.