From 1de86d27cb924caae939645a126b3292f50b4d4a Mon Sep 17 00:00:00 2001 From: Nathan Weizenbaum Date: Sat, 2 Jan 2010 18:16:42 -0800 Subject: [PATCH] [Sass] Fix a minor example in the reference. --- doc-src/SASS_REFERENCE.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc-src/SASS_REFERENCE.md b/doc-src/SASS_REFERENCE.md index 957a7c22..c2b3ff23 100644 --- a/doc-src/SASS_REFERENCE.md +++ b/doc-src/SASS_REFERENCE.md @@ -458,8 +458,8 @@ For example, would compile to - .foo - color: #f00 + .foo { + color: #f00; } whereas @@ -467,7 +467,7 @@ whereas would compile to - @import foo.css + @import foo.css; Finally,