From: Andrew M. Kuchling Date: Mon, 18 Dec 2006 17:12:31 +0000 (+0000) Subject: [Bug #1618083] Add missing word; make a few grammar fixes X-Git-Tag: v2.6a1~2367 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4cd69d43e88b4902240e1292f3e86a43ae0b6698;p=thirdparty%2FPython%2Fcpython.git [Bug #1618083] Add missing word; make a few grammar fixes --- diff --git a/Doc/lib/libsqlite3.tex b/Doc/lib/libsqlite3.tex index 82416fa53d99..aeb60c1ac687 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}