From 2d8fccc80f93027527b6dccad6fe87a7417fb9fd Mon Sep 17 00:00:00 2001 From: Emil Hessman Date: Thu, 4 Aug 2022 18:13:49 +0200 Subject: [PATCH] Docs: fix typos in sqlite3 --- Doc/library/sqlite3.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 3fade30c2562d3..9055e0307c8603 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -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: @@ -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*.