html5/eventsource Overview.html,1.156,1.157

Update of /sources/public/html5/eventsource
In directory hutz:/tmp/cvs-serv31682

Modified Files:
	Overview.html 
Log Message:
correct an example (whatwg r5830)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/eventsource/Overview.html,v
retrieving revision 1.156
retrieving revision 1.157
diff -u -d -r1.156 -r1.157
--- Overview.html	20 Jan 2011 20:55:18 -0000	1.156
+++ Overview.html	3 Feb 2011 23:22:29 -0000	1.157
@@ -230,7 +230,7 @@
 
    <h1>Server-Sent Events</h1>
    <!--<h2 class="no-num no-toc">(subtitle)</h2>-->
-   <h2 class="no-num no-toc" id="editor-s-draft-20-january-2011">Editor's Draft 20 January 2011</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-3-february-2011">Editor's Draft 3 February 2011</h2>
    <dl><dt>Latest Published Version:</dt>
     <dd><a href="http://www.w3.org/TR/eventsource/">http://www.w3.org/TR/eventsource/</a></dd>
     <dt>Latest Editor's Draft:</dt>
@@ -325,7 +325,7 @@
   </dl><p>The W3C <a href="http://www.w3.org/2008/webapps/">Web Applications
   Working Group</a> is the W3C working group responsible for this
   specification's progress along the W3C Recommendation track.
-  This specification is the 20 January 2011 Editor's Draft.
+  This specification is the 3 February 2011 Editor's Draft.
   </p><!-- required patent boilerplate --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5
   February 2004 W3C Patent Policy</a>. W3C maintains a <a href="http://www.w3.org/2004/01/pp-impl/42538/status" rel="disclosure">public list of
   any patent disclosures</a> made in connection with the deliverables
@@ -843,7 +843,7 @@
 data:&nbsp;&nbsp;third event</pre>
   </div><div class="example">
 
-   <p>The following stream fires just one event:</p>
+   <p>The following stream fires three events:</p>
 
    <pre>data
 
@@ -852,10 +852,10 @@
 
 data:</pre>
 
-   <p>The first and last blocks do nothing, since they do not contain
-   any actual data (the <var title="">data</var> buffer remains at the
-   empty string, and so nothing gets dispatched). The middle block
-   fires an event with the data set to a single newline character.</p>
+   <p>The first and last blocks fire events with the data set to the
+   empty string. The middle block fires an event with the data set to
+   a single newline character.</p>
+
   </div><div class="example">
 
    <p>The following stream fires two identical events:</p>

Received on Thursday, 3 February 2011 23:22:33 UTC