Skip to content

Commit

Permalink
Docs: Create parity between no-sequences examples
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 committed Mar 10, 2016
1 parent 3dfcbb3 commit 56bf864
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/rules/no-sequences.md
Expand Up @@ -9,7 +9,7 @@ a = b += 5, a + b;

while (a = next(), a && a.length);

(0,eval)("doSomething();");
(0, eval)("doSomething();");
```

## Rule Details
Expand All @@ -24,7 +24,7 @@ The following patterns are considered problems:
```js
/*eslint no-sequences: 2*/

foo = doSomething, val;
foo = doSomething(), val;

do {} while (doSomething(), !!test);

Expand All @@ -46,7 +46,7 @@ The following patterns are not considered problems:

foo = (doSomething(), val);

(0,eval)("doSomething();");
(0, eval)("doSomething();");

do {} while ((doSomething(), !!test));

Expand Down

0 comments on commit 56bf864

Please sign in to comment.