Skip to content

Commit

Permalink
Merge pull request #5589 from cvrebert/patch-1
Browse files Browse the repository at this point in the history
Docs: Fix typo in code snippet for no-unmodified-loop-condition rule
  • Loading branch information
ilyavolodin committed Mar 16, 2016
2 parents 7c78cb1 + 5a881e7 commit ce88bc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/no-unmodified-loop-condition.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The following patterns are considered problems:
while (node) {
doSomething(node);
}
node = other.
node = other;

for (var j = 0; j < items.length; ++i) {
doSomething(items[j]);
Expand Down

0 comments on commit ce88bc2

Please sign in to comment.