diff --git a/README.md b/README.md index c6446cd..3d56585 100644 --- a/README.md +++ b/README.md @@ -312,11 +312,11 @@ For reference here is an anatomy of a rule set: **Good** ```scss - @include box-shadow(0 2px 2px rgba(0, 0, 0, .2)); + @include box-shadow(0 2px 2px rgba(0, 0, 0, 0.2)); ``` **Bad** ```scss - @include box-shadow( 0 2px 2px rgba( 0, 0, 0, .2 ) ); + @include box-shadow( 0 2px 2px rgba( 0, 0, 0, 0.2 ) ); ``` - When a decimal mark is needed always include the zero. @@ -342,11 +342,11 @@ For reference here is an anatomy of a rule set: **Good** ```scss - background: url('assets/image.png'); + background: url("assets/image.png"); ``` **Bad** ```scss - background: url('https://example.com/assets/image.png'); + background: url("https://example.com/assets/image.png"); ``` ### Declaration order