]> granicus.if.org Git - python/commitdiff
Fix typo in Cursor.execute().
authorBerker Peksag <berker.peksag@gmail.com>
Wed, 24 Aug 2016 21:50:24 +0000 (00:50 +0300)
committerBerker Peksag <berker.peksag@gmail.com>
Wed, 24 Aug 2016 21:50:24 +0000 (00:50 +0300)
Doc/library/sqlite3.rst

index 80099715ba8331bfee2fdd7aebac4aa30dac1697..d8fd6e764c7e22aa61054f2cdbcf0ae73274baa3 100644 (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.