html5/markup/src syntax.html,1.61,1.62

Update of /sources/public/html5/markup/src
In directory hutz:/tmp/cvs-serv14618/src

Modified Files:
	syntax.html 
Log Message:
streamline the description of what an end tag is


Index: syntax.html
===================================================================
RCS file: /sources/public/html5/markup/src/syntax.html,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -d -r1.61 -r1.62
--- syntax.html	30 Jul 2009 16:42:47 -0000	1.61
+++ syntax.html	30 Jul 2009 17:08:49 -0000	1.62
@@ -216,13 +216,13 @@
         <li>A
         "<code title="U+003C LESS-THAN SIGN">&lt;</code>"
         character.</li>
-        <li>A
+        <li>The element’s
         <a href="#tag-name" title="syntax-tag-name">tag name</a>.</li>
         <li>Optionally, one or more
         <a href="#attribute">attributes</a>,
         each of which must be preceded by one or more
         <a href="#space">space characters</a>.</li>
-        <li>Zero or more
+        <li>Optionally, one or more
         <a href="#space">space characters</a>.</li>
         <li>Optionally, a
         "<code title="U+002F SOLIDUS">/</code>"
@@ -235,20 +235,20 @@
       </li>
       <li>
       <dfn id="syntax-end-tags">End tags</dfn>
-      must have the following format:
+      consist of the following parts, in exactly the following
+      order:
       <ol>
-        <li>The first character of an end tag must be a
+        <li>A
         "<code title="U+003C LESS-THAN SIGN">&lt;</code>"
         character.</li>
-        <li>The second character of an end tag must be a
+        <li>A
         "<code title="U+002F SOLIDUS">/</code>"
         character</li>
-        <li>The next few characters of an end tag must be the
-        element’s
+        <li>The element’s
         <a href="#tag-name" title="syntax-tag-name">tag name</a>.</li>
-        <li>After the tag name, there may be one or more
+        <li>Optionally, one or more
         <a href="#space" title="space character">space characters</a>.</li>
-        <li>An end tag must be closed by a
+        <li>A
         "<code title="U+003E GREATER-THAN SIGN">&gt;</code>"
         character.</li>
       </ol>

Received on Thursday, 30 July 2009 17:09:00 UTC