diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2022-07-14 21:47:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-14 21:47:46 (GMT) |
commit | 9ea72e9d8d9c7ff7c0cec4bacf6071ff4f1f6238 (patch) | |
tree | 26e2debecd3a8cd26d209399cba92511cc07beb1 | |
parent | 625ba9bdff51baddf9d5e156e5facf05fa1003d6 (diff) | |
download | cpython-9ea72e9d8d9c7ff7c0cec4bacf6071ff4f1f6238.zip cpython-9ea72e9d8d9c7ff7c0cec4bacf6071ff4f1f6238.tar.gz cpython-9ea72e9d8d9c7ff7c0cec4bacf6071ff4f1f6238.tar.bz2 |
Docs: fix typo in sqlite3.rst (#94798)
Colum -> Column
-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 bdff071..d2997dc 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -1366,7 +1366,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: |