]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.11] Docs: fix typo in doc for sqlite3.Cursor.execute (GH-112442) (#112445)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 27 Nov 2023 09:34:35 +0000 (10:34 +0100)
committerGitHub <noreply@github.com>
Mon, 27 Nov 2023 09:34:35 +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 3e9b7a270ad5ef2d7fb77edaf9ff8e9cabe2b4f1..36e9092685434abb3d65fce683f39ea26f251f78 100644 (file)
@@ -1314,7 +1314,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>`.