summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-12-18 17:13:10 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-12-18 17:13:10 (GMT)
commitaa4135a45e4f01fa35c1b65825731a20bdb60d61 (patch)
tree527a59eabdf0695b451f9ce6db06510671880db6 /Doc
parenta75d31619c75854e45ad20918e4300efe7507767 (diff)
downloadcpython-aa4135a45e4f01fa35c1b65825731a20bdb60d61.zip
cpython-aa4135a45e4f01fa35c1b65825731a20bdb60d61.tar.gz
cpython-aa4135a45e4f01fa35c1b65825731a20bdb60d61.tar.bz2
[Bug #1618083] Add missing word; make a few grammar fixes
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libsqlite3.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libsqlite3.tex b/Doc/lib/libsqlite3.tex
index b8bdbdc..46e9800 100644
--- a/Doc/lib/libsqlite3.tex
+++ b/Doc/lib/libsqlite3.tex
@@ -187,12 +187,12 @@ int, long, float, str (UTF-8 encoded), unicode or buffer.
\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}