[Python-checkins] r53048 - python/trunk/Doc/lib/libsqlite3.tex

andrew.kuchling python-checkins at python.org
Mon Dec 18 18:12:32 CET 2006


Author: andrew.kuchling
Date: Mon Dec 18 18:12:31 2006
New Revision: 53048

Modified:
   python/trunk/Doc/lib/libsqlite3.tex
Log:
[Bug #1618083] Add missing word; make a few grammar fixes

Modified: python/trunk/Doc/lib/libsqlite3.tex
==============================================================================
--- python/trunk/Doc/lib/libsqlite3.tex	(original)
+++ python/trunk/Doc/lib/libsqlite3.tex	Mon Dec 18 18:12:31 2006
@@ -187,12 +187,12 @@
 \end{funcdesc}
 
 \begin{funcdesc}{complete_statement}{sql}
-Returns \constant{True} if the string \var{sql} one or more complete SQL
-statements terminated by semicolons. It does not verify if the SQL is
-syntactically correct, only if there are no unclosed string literals and if the
+Returns \constant{True} if the string \var{sql} contains one or more complete SQL
+statements terminated by semicolons. It does not verify that the SQL is
+syntactically correct, only that there are no unclosed string literals and the
 statement is terminated by a semicolon.
 
-This can be used to build a shell for SQLite, like in the following example:
+This can be used to build a shell for SQLite, as in the following example:
 
     \verbatiminput{sqlite3/complete_statement.py}
 \end{funcdesc}


More information about the Python-checkins mailing list