Skip to content

Commit 5da33d3

Browse files
committed
[css-mixins-1][editorial] Tweak markup
1 parent 729de92 commit 5da33d3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

css-mixins-1/Overview.bs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1294,10 +1294,10 @@ Its grammar is:
12941294
/* Invokes --two with one argument, and no contents. */
12951295

12961296
@apply --three {color: red;}
1297-
/* Invokes --three with no arguments, but with contents.
1297+
/* Invokes --three with no arguments, but with contents. */
12981298

12991299
@apply --four(blue) {color: red;}
1300-
/* Invokes --four with both an argument and contents.
1300+
/* Invokes --four with both an argument and contents. */
13011301
}
13021302
</pre>
13031303
</div>
@@ -1355,12 +1355,12 @@ having a <<declaration-list>> block makes the ''@apply'' rule invalid
13551355

13561356
<pre highlight=css>
13571357
@mixin --just-contents(@contents) {
1358-
@contents { content: "This is fallback." }
1358+
@contents { color: red; }
13591359
}
13601360

13611361
.foo {
13621362
@apply --just-contents;
1363-
/* substitutes with `content: "This is fallback.";` */
1363+
/* substitutes with `color: red;` */
13641364
}
13651365
.bar {
13661366
@apply --just-contents {};

0 commit comments

Comments
 (0)