Skip to content

Commit

Permalink
Merge pull request #5869 from eslint/indent-docs
Browse files Browse the repository at this point in the history
Docs: Fix config comments in indent docs
  • Loading branch information
gyandeeps committed Apr 15, 2016
2 parents 44d96ac + af3113c commit 9f7c21e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/rules/indent.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ if (a) {
Examples of **correct** code for this rule with the default options:

```js
/*indent: "error"*/
/*eslint indent: "error"*/

if (a) {
b=c;
Expand Down Expand Up @@ -101,7 +101,7 @@ function foo(d) {
Examples of **correct** code for this rule with the `"tab"` option:

```js
/*indent: ["error", "tab"]*/
/*eslint indent: ["error", "tab"]*/

if (a) {
/*tab*/b=c;
Expand Down

0 comments on commit 9f7c21e

Please sign in to comment.