html5/spec Overview.html,1.2801,1.2802

Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv10523

Modified Files:
	Overview.html 
Log Message:
Encourage lowercase DOCTYPE names subtly. (whatwg r3611)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec/Overview.html,v
retrieving revision 1.2801
retrieving revision 1.2802
diff -u -d -r1.2801 -r1.2802
--- Overview.html	14 Aug 2009 04:04:21 -0000	1.2801
+++ Overview.html	14 Aug 2009 04:08:30 -0000	1.2802
@@ -1384,7 +1384,7 @@
   <a href="#x-this" title="x-this">this</a> or like <i title="x-this"><a href="#x-this">this</a></i>.<p>The defining instance of an element, attribute, or API is marked
   up like <dfn id="x-that" title="x-that"><code>this</code></dfn>. References to
   that element, attribute, or API are marked up like <code title="x-that"><a href="#x-that">this</a></code>.<p>Other code fragments are marked up <code title="">like
-  this</code>.<p>Variables are marked up like <var title="">this</var>.<p class="impl">This is an implementation requirement.<h3 id="a-quick-introduction-to-html"><span class="secno">1.9 </span>A quick introduction to HTML</h3><p><i>This section is non-normative.</i><p>A basic HTML document looks like this:<pre>&lt;!DOCTYPE HTML&gt;
+  this</code>.<p>Variables are marked up like <var title="">this</var>.<p class="impl">This is an implementation requirement.<h3 id="a-quick-introduction-to-html"><span class="secno">1.9 </span>A quick introduction to HTML</h3><p><i>This section is non-normative.</i><p>A basic HTML document looks like this:<pre>&lt;!DOCTYPE html&gt;
 &lt;html&gt;
  &lt;head&gt;
   &lt;title&gt;Sample page&lt;/title&gt;
@@ -1455,7 +1455,7 @@
   or through a speech synthesizer, or on a braille display. To
   influence exactly how such rendering takes place, authors can use a
   styling language such as CSS.<p>In the following example, the page has been made yellow-on-blue
-  using CSS.<pre>&lt;!DOCTYPE HTML&gt;
+  using CSS.<pre>&lt;!DOCTYPE html&gt;
 &lt;html&gt;
  &lt;head&gt;
   &lt;title&gt;Sample styled page&lt;/title&gt;
@@ -6622,7 +6622,7 @@
    <p>For example, the following document is non-conforming, despite
    being syntactically correct:</p>
 
-   <pre class="bad">&lt;!DOCTYPE html&gt;
+   <pre class="bad">&lt;!DOCTYPE HTML&gt;
 &lt;html lang="en-GB"&gt;
  &lt;head&gt; &lt;title&gt; Demonstration &lt;/title&gt; &lt;/head&gt;
  &lt;body&gt;
@@ -6642,7 +6642,7 @@
    data (and the <code><a href="#the-cite-element">cite</a></code> element mis-used). A corrected
    version of this document might be:</p>
 
-   <pre>&lt;!DOCTYPE html&gt;
+   <pre>&lt;!DOCTYPE HTML&gt;
 &lt;html lang="en-GB"&gt;
  &lt;head&gt; &lt;title&gt; Demonstration &lt;/title&gt; &lt;/head&gt;
  &lt;body&gt;

Received on Friday, 14 August 2009 04:08:47 UTC