Skip to content

Commit

Permalink
Docs: fix two typos in the sqlite3 docs (#95661)
Browse files Browse the repository at this point in the history
- statment => statement
- transaciton => transaction
  • Loading branch information
ceh committed Aug 4, 2022
1 parent bdbadb9 commit 962acd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@ Connection objects
Either ``"main"`` (the default) for the main database,
``"temp"`` for the temporary database,
or the name of a custom database as attached using the
``ATTACH DATABASE`` SQL statment.
``ATTACH DATABASE`` SQL statement.
:type name: str

:param sleep:
Expand Down Expand Up @@ -1060,7 +1060,7 @@ Cursor objects
.. method:: executescript(sql_script, /)

Execute the SQL statements in *sql_script*.
If there is a pending transaciton,
If there is a pending transaction,
an implicit ``COMMIT`` statement is executed first.
No other implicit transaction control is performed;
any transaction control must be added to *sql_script*.
Expand Down

0 comments on commit 962acd4

Please sign in to comment.