]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] Docs: fix typo in doc for sqlite3.Cursor.execute (GH-112442) (#112444)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 27 Nov 2023 09:34:19 +0000 (10:34 +0100)
committerGitHub <noreply@github.com>
Mon, 27 Nov 2023 09:34:19 +0000 (09:34 +0000)
Docs: fix typo in doc for sqlite3.Cursor.execute (GH-112442)
(cherry picked from commit fb79e1ed4a985a487a02bb8585cc1bd2933dfa7c)

Co-authored-by: Tom Levy <tomlevy93@gmail.com>
Doc/library/sqlite3.rst

index 3cb2f4548c1e5897a93529aa94a5244ca38ca834..c36c3f042de276c4a729d161e4d35f323d31ce9d 100644 (file)
@@ -1471,7 +1471,7 @@ Cursor objects
 
    .. method:: execute(sql, parameters=(), /)
 
-      Execute SQL a single SQL statement,
+      Execute a single SQL statement,
       optionally binding Python values using
       :ref:`placeholders <sqlite3-placeholders>`.