Skip to content

Commit 87225e5

Browse files
author
Mike Fowler
committed
Update styleguide examples to use double quotes
1 parent 4da72c8 commit 87225e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ Placeholders are powerful but easy to abuse, especially when combined with neste
248248
```sass
249249
// Unless we call `@extend %icon` these properties won't be compiled!
250250
%icon {
251-
font-family: 'Airglyphs';
251+
font-family: "Airglyphs";
252252
}
253253

254254
.icon-error {
@@ -267,7 +267,7 @@ Placeholders are powerful but easy to abuse, especially when combined with neste
267267
```css
268268
.icon-error,
269269
.icon-success {
270-
font-family: 'Airglyphs';
270+
font-family: "Airglyphs";
271271
}
272272

273273
.icon-error {

0 commit comments

Comments
 (0)