Skip to content

Commit

Permalink
Docs: Improve eol-last examples in docs (#7227)
Browse files Browse the repository at this point in the history
  • Loading branch information
chaintng authored and vitorbal committed Sep 26, 2016
1 parent de8eaa4 commit 87625fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/rules/eol-last.md
Expand Up @@ -19,7 +19,7 @@ the end of the file. If you still want this behaviour, consider enabling
Examples of **incorrect** code for this rule:

```js
/*eslint eol-last: "error"*/
/*eslint eol-last: ["error", "always"]*/

function doSmth() {
var foo = 2;
Expand All @@ -29,7 +29,7 @@ function doSmth() {
Examples of **correct** code for this rule:

```js
/*eslint eol-last: "error"*/
/*eslint eol-last: ["error", "always"]*/

function doSmth() {
var foo = 2;
Expand Down

0 comments on commit 87625fa

Please sign in to comment.