- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 10 Sep 2009 11:18:09 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/webdatabase
In directory hutz:/tmp/cvs-serv15401
Modified Files:
	Overview.html 
Log Message:
Clarify when the version of the db is set. (whatwg r3794)
Index: Overview.html
===================================================================
RCS file: /sources/public/html5/webdatabase/Overview.html,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- Overview.html	8 Sep 2009 21:58:37 -0000	1.29
+++ Overview.html	10 Sep 2009 11:18:07 -0000	1.30
@@ -456,11 +456,13 @@
    <li>
 
     <p>If no database with the given name from the origin <var title="">origin</var> exists, then create the database and let
-    <var title="">created</var> be true. Otherwise, let <var title="">created</var> be false.</p>
+    <var title="">created</var> be true. If a callback was passed to
+    the method, then set the new database's version to the empty
+    string. Otherwise, set the new database's version to the given
+    database version.</p>
 
-    <p>If a callback was passed to the method, then let the database's
-    version be the empty string. Otherwise, let its version be the
-    given database version</p>
+    <p>Otherwise, if a database with the given name already exists,
+    let <var title="">created</var> be false.</p>
 
    </li>
 
Received on Thursday, 10 September 2009 11:18:21 UTC