From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 27 Nov 2023 09:34:35 +0000 (+0100) Subject: [3.11] Docs: fix typo in doc for sqlite3.Cursor.execute (GH-112442) (#112445) X-Git-Tag: v3.11.7~40 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=faa1ef4893f0abc0acd7ce3abd393d06ea69374d;p=thirdparty%2FPython%2Fcpython.git [3.11] Docs: fix typo in doc for sqlite3.Cursor.execute (GH-112442) (#112445) Docs: fix typo in doc for sqlite3.Cursor.execute (GH-112442) (cherry picked from commit fb79e1ed4a985a487a02bb8585cc1bd2933dfa7c) Co-authored-by: Tom Levy --- diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 3e9b7a270ad5..36e909268543 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -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 `.