diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-07-14 22:22:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-14 22:22:50 (GMT) |
commit | 3048b8bd2a5c62b9c65ff4cf75399c7e732acdea (patch) | |
tree | 78a8326c72a9ccc953e2229268369c5e0ca3c655 | |
parent | 03c85d49edf782f0d3344e696b9613ef6dee8b24 (diff) | |
download | cpython-3048b8bd2a5c62b9c65ff4cf75399c7e732acdea.zip cpython-3048b8bd2a5c62b9c65ff4cf75399c7e732acdea.tar.gz cpython-3048b8bd2a5c62b9c65ff4cf75399c7e732acdea.tar.bz2 |
bpo-44639: fix typo in sqlite.rst (transation => transaction) (GH-27145) (GH-27148)
To my understanding, this is supposed to say "transaction".
See the relevant source:
https://github.com/python/cpython/blob/a158b20019b50e3ece6e4743ec4e6ae8d818b690/Modules/_sqlite/connection.cGH-L1434-L1467
(cherry picked from commit 1ca27f264730abaaa48b3c5e7c6eafb45017b824)
Co-authored-by: Jack DeVries <58614260+jdevries3133@users.noreply.github.com>
Co-authored-by: Jack DeVries <58614260+jdevries3133@users.noreply.github.com>
-rw-r--r-- | Doc/library/sqlite3.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index f9e4c8a..ac9169c 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -649,7 +649,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`. |