Fixed a couple of cases where the spec used # instead of #x in productions
authorJames Clark <jjc@jclark.com>
Thu, 27 Sep 2012 05:16:55 +0700
changeset 7 1626ef2ec2fa
parent 6 49ea9b1f9882
child 8 2993649d1c30
Fixed a couple of cases where the spec used # instead of #x in productions
spec/microxml.html
--- a/spec/microxml.html	Mon Sep 24 17:22:22 2012 +0700
+++ b/spec/microxml.html	Thu Sep 27 05:16:55 2012 +0700
@@ -405,10 +405,10 @@
 
     <h3 id="characters">3.8 Characters</h3>
 
-    <pre>[23] char ::= s | ([#0-#x10FFFF] - forbiddenCodePoint)
+    <pre>[23] char ::= s | ([#x0-#x10FFFF] - forbiddenCodePoint)
 
 [25] forbiddenCodePoint ::= controlCodePoint | surrogateCodePoint | nonCharacterCodePoint
-[26] controlCodePoint ::= [#x0-#1F] | [#x7F-#x9F]
+[26] controlCodePoint ::= [#x0-#x1F] | [#x7F-#x9F]
 [27] surrogateCodePoint ::= [#xD800-#xDFFF]
 [28] nonCharacterCodePoint ::= [#xFDD0-#xFDEF] | [#xFFFE-#xFFFF] | [#x1FFFE-#x1FFFF]
                              | [#x2FFFE-#x2FFFF] | [#x3FFFE-#x3FFFF] | [#x4FFFE-#x4FFFF]