diff --git a/docs/rules/quote-props.md b/docs/rules/quote-props.md index 0b46fa98cf0..cccb48d7917 100644 --- a/docs/rules/quote-props.md +++ b/docs/rules/quote-props.md @@ -61,8 +61,7 @@ Examples of **incorrect** code for this rule with the default `"always"` option: var object = { foo: "bar", - baz: 42, - "qux-lorem": true + baz: 42 }; ```