Skip to content

Commit 1bd117c

Browse files
committed
The module preprocessor doesn't like the example
content: 'this is a \'string\''; so I added a period between the two quotes...
1 parent 3abaf46 commit 1bd117c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

css3-values/Overview.src.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,10 +187,10 @@ <h3>Strings</h3>
187187

188188
<div class=example>
189189
<pre>
190-
content: "this is a 'string'";
191-
content: "this is a \"string\"";
192-
content: 'this is a "string"';
193-
content: 'this is a \'string\'';
190+
content: "this is a 'string'.";
191+
content: "this is a \"string\".";
192+
content: 'this is a "string".';
193+
content: 'this is a \'string\'.';
194194
</pre>
195195
</div>
196196

0 commit comments

Comments
 (0)