Skip to content

Commit

Permalink
Merge pull request #4594 from yjcxy12/patch-1
Browse files Browse the repository at this point in the history
Docs: Update docs/rules/no-plusplus.md
  • Loading branch information
nzakas committed Dec 2, 2015
2 parents 7364ed5 + ce6f011 commit 1cacded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/no-plusplus.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ for (i = 0; i < l; i += 1) {
The following patterns are not considered problems if `allowForLoopAfterthoughts` is set to true:

```js
/*eslint no-plusplus: 2, [{ allowForLoopAfterthoughts: true }]*/
/*eslint no-plusplus: [2, { allowForLoopAfterthoughts: true }]*/

for (i = 0; i < l; i++) {
return;
Expand Down

0 comments on commit 1cacded

Please sign in to comment.