diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-07-14 21:56:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-14 21:56:30 (GMT) |
commit | 016fd7b57fec3d9f67981b520078ca46bc4c426c (patch) | |
tree | 86fc31943f01519bcda7188c60ba7ed1cb10dc7c | |
parent | 498c6490807e67a48df7982d266acd2c7407ca60 (diff) | |
download | cpython-016fd7b57fec3d9f67981b520078ca46bc4c426c.zip cpython-016fd7b57fec3d9f67981b520078ca46bc4c426c.tar.gz cpython-016fd7b57fec3d9f67981b520078ca46bc4c426c.tar.bz2 |
Docs: fix typo in sqlite3.rst (GH-94798)
Colum -> Column
(cherry picked from commit 9ea72e9d8d9c7ff7c0cec4bacf6071ff4f1f6238)
Co-authored-by: Ikko Ashimine <eltociear@gmail.com>
-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 575a5a1..9da7b54 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -1356,7 +1356,7 @@ of :func:`connect`. There are three options: * Explicit: set *detect_types* to :const:`PARSE_COLNAMES` * Both: set *detect_types* to ``sqlite3.PARSE_DECLTYPES | sqlite3.PARSE_COLNAMES``. - Colum names take precedence over declared types. + Column names take precedence over declared types. The following example illustrates the implicit and explicit approaches: |