diff options
author | Semen Zhydenko <semen.zhydenko@gmail.com> | 2023-01-10 09:04:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-10 09:04:06 (GMT) |
commit | 35650f25383efce83b62d5273110ab8dcdbcc254 (patch) | |
tree | d559b52b444bbc0ec3b3eba123c175165f4a1e5e /Doc/library/sqlite3.rst | |
parent | 57a5259a438c717755fc667fcbedb515ef8e0c85 (diff) | |
download | cpython-35650f25383efce83b62d5273110ab8dcdbcc254.zip cpython-35650f25383efce83b62d5273110ab8dcdbcc254.tar.gz cpython-35650f25383efce83b62d5273110ab8dcdbcc254.tar.bz2 |
Fix typos in Doc folder (#100880)
Diffstat (limited to 'Doc/library/sqlite3.rst')
-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 0d929d1..1708cd9 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -2463,7 +2463,7 @@ Transaction control via the ``autocommit`` attribute The recommended way of controlling transaction behaviour is through the :attr:`Connection.autocommit` attribute, -which should preferrably be set using the *autocommit* parameter +which should preferably be set using the *autocommit* parameter of :func:`connect`. It is suggested to set *autocommit* to ``False``, |