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

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

See the relevant source:

a158b20019/Modules/_sqlite/connection.c (L1434-L1467)
This commit is contained in:
Jack DeVries 2021-07-14 17:39:54 -04:00 committed by GitHub
parent a158b20019
commit 1ca27f2647
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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`.