Skip to content

Commit

Permalink
Docs: Add missing quotes (#13714)
Browse files Browse the repository at this point in the history
As it was, the example was not a valid JSON.
  • Loading branch information
luciopaiva committed Sep 24, 2020
1 parent 7c34a98 commit 51674a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/lines-between-class-members.md
Expand Up @@ -84,7 +84,7 @@ class Foo{
Examples of **correct** code for this rule with the object option:

```js
/* eslint lines-between-class-members: ["error", "always", { exceptAfterSingleLine: true }]*/
/* eslint lines-between-class-members: ["error", "always", { "exceptAfterSingleLine": true }]*/
class Foo{
bar(){} // single line class member
baz(){
Expand Down

0 comments on commit 51674a4

Please sign in to comment.