From 6671f063cea9d4278db04abe25c95c868778b4e6 Mon Sep 17 00:00:00 2001 From: sodatea Date: Tue, 26 Jan 2016 00:17:46 +0800 Subject: [PATCH] Extend the example to avoid misleading --- doc/options.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/options.md b/doc/options.md index 8be912bc..317a6d9f 100644 --- a/doc/options.md +++ b/doc/options.md @@ -41,7 +41,7 @@ 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`. @@ -49,10 +49,10 @@ 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