Fix typo in Cursor.execute().

This commit is contained in:
Berker Peksag 2016-08-25 00:50:24 +03:00
parent ed789f9cf9
commit 7d92f892b4
1 changed files with 1 additions and 1 deletions

View File

@ -542,7 +542,7 @@ Cursor Objects
.. literalinclude:: ../includes/sqlite3/execute_1.py
:meth:`execute` will only execute a single SQL statement. If you try to execute
more than one statement with it, it will raise an :exc:`.Warning`. Use
more than one statement with it, it will raise a :exc:`.Warning`. Use
:meth:`executescript` if you want to execute multiple SQL statements with one
call.