summaryrefslogtreecommitdiff
path: root/spec.txt
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-09-01 11:54:32 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2014-09-01 11:54:51 -0700
commit38686fc2122ad5d3716ac9740fc6e4383179d2a7 (patch)
tree783797528c951640c9849af0a327a018d8da231a /spec.txt
parent4bc4bf4695634dba18bb2eaa8c9c63a64d04558d (diff)
Spec: Fixed example in section 5.2.1.
Closes #8. Thanks, @balpha, for catching these problems.
Diffstat (limited to 'spec.txt')
-rw-r--r--spec.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/spec.txt b/spec.txt
index ae60f60..598bbfc 100644
--- a/spec.txt
+++ b/spec.txt
@@ -3090,9 +3090,11 @@ as the four-space rule demands, rather than a single list,
``` html
<ul>
-<li><p>foo<p>
-<p>bar</p></li>
-<li><p>baz</p><li>
+<li><p>foo</p>
+<p>bar</p>
+<ul>
+<li>baz</li>
+</ul></li>
</ul>
```