Skip to content

Commit

Permalink
[docs] Extend the example to avoid misleading
Browse files Browse the repository at this point in the history
  • Loading branch information
haoqunjiang authored and tonyganch committed Jul 11, 2016
1 parent 112d7b6 commit 3176bad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,18 @@ Following options are ignored while processing `*.sass` files:

## always-semicolon

Whether to add a semicolon after the last value/mixin.
Whether to add a semicolon after the *last* value/mixin.

Acceptable value: `true`.

Example: `{ "always-semicolon": true }`

```css
/* before */
a { color: red }
a { color: red; text-decoration: underline }

/* after */
a { color: red; }
a { color: red; text-decoration: underline; }
```

### always-semicolon vs. preprocessors
Expand Down

0 comments on commit 3176bad

Please sign in to comment.