diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 892daf1660c6ec66805339bb88c87a9e26d42eef..96694c6054446c0e69e59fe1b7bd53b1a592ea6f 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -877,7 +877,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: @@ -1050,7 +1050,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*.