[Python-checkins] bpo-44639: fix typo in sqlite.rst (transation => transaction) (GH-27145)

miss-islington webhook-mailer at python.org
Wed Jul 14 17:40:13 EDT 2021


https://github.com/python/cpython/commit/1ca27f264730abaaa48b3c5e7c6eafb45017b824
commit: 1ca27f264730abaaa48b3c5e7c6eafb45017b824
branch: main
author: Jack DeVries <58614260+jdevries3133 at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-07-14T14:39:54-07:00
summary:

bpo-44639: fix typo in sqlite.rst (transation => transaction) (GH-27145)



To my understanding, this is supposed to say "transaction".

See the relevant source:

https://github.com/python/cpython/blob/a158b20019b50e3ece6e4743ec4e6ae8d818b690/Modules/_sqlite/connection.c#L1434-L1467

files:
M Doc/library/sqlite3.rst

diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 33cb13e9784c3..05fcabb8f671c 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -654,7 +654,7 @@ Cursor Objects
       This is a nonstandard convenience method for executing multiple SQL statements
       at once. It issues a ``COMMIT`` statement first, then executes the SQL script it
       gets as a parameter.  This method disregards :attr:`isolation_level`; any
-      transation control must be added to *sql_script*.
+      transaction control must be added to *sql_script*.
 
       *sql_script* can be an instance of :class:`str`.
 



More information about the Python-checkins mailing list