html5/webstorage Overview.html,1.48,1.49

Update of /sources/public/html5/webstorage
In directory hutz:/tmp/cvs-serv7490

Modified Files:
	Overview.html 
Log Message:
Apparently some people think 'between' includes the end points. (whatwg r3369)

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/webstorage/Overview.html,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- Overview.html	1 Jul 2009 04:44:27 -0000	1.48
+++ Overview.html	7 Jul 2009 21:41:02 -0000	1.49
@@ -173,7 +173,7 @@
    <h1>Web Storage</h1>
    <!--ZZZ:-->
    <!--<h2 class="no-num no-toc">W3C Working Draft 23 April 2009</h2>-->
-   <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 1 July 2009</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-date-1-january-1970">Editor's Draft 7 July 2009</h2>
    <!--:ZZZ-->
    <dl><!-- ZZZ: update the month/day (twice), (un)comment out
     <dt>This Version:</dt>
@@ -241,7 +241,7 @@
   specification's progress along the W3C Recommendation track.
   <!--ZZZ:-->
   <!--This specification is the 23 April 2009 Working Draft.-->
-  This specification is the 1 July 2009 Editor's Draft.
+  This specification is the 7 July 2009 Editor's Draft.
   <!--:ZZZ-->
   </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
@@ -447,8 +447,8 @@
   attribute must return the number of key/value pairs currently
   present in the list associated with the object.<p>The <dfn id="dom-storage-key" title="dom-Storage-key"><code>key(<var title="">n</var>)</code></dfn> method must return the name of the
   <var title="">n</var>th key in the list. The order of keys is
-  user-agent defined, but must be consistent within an object between
-  changes to the number of keys. (Thus, <a href="#dom-storage-setitem" title="dom-Storage-setItem">adding</a> or <a href="#dom-storage-removeitem" title="dom-Storage-removeItem">removing</a> a key may change the
+  user-agent defined, but must be consistent within an object so long
+  as the number of keys doesn't change. (Thus, <a href="#dom-storage-setitem" title="dom-Storage-setItem">adding</a> or <a href="#dom-storage-removeitem" title="dom-Storage-removeItem">removing</a> a key may change the
   order of the keys, but merely changing the value of an existing key
   must not.) <!--The order of keys may differ between instances of the
   <code>Storage</code> interface accessing the same list. [removed for

Received on Tuesday, 7 July 2009 21:41:16 UTC