Docs: fix typo in sqlite3.rst (#94798)

Colum -> Column
This commit is contained in:
Ikko Ashimine 2022-07-15 06:47:46 +09:00 committed by GitHub
parent 625ba9bdff
commit 9ea72e9d8d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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: