]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: fix typo in sqlite3.rst (GH-94798)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 14 Jul 2022 21:58:14 +0000 (14:58 -0700)
committerGitHub <noreply@github.com>
Thu, 14 Jul 2022 21:58:14 +0000 (14:58 -0700)
Colum -> Column
(cherry picked from commit 9ea72e9d8d9c7ff7c0cec4bacf6071ff4f1f6238)

Co-authored-by: Ikko Ashimine <eltociear@gmail.com>
Doc/library/sqlite3.rst

index 7030059609ff9ea27c6df385478becc6019e3742..808adb1323015de13c76b1e20a85665507aafbab 100644 (file)
@@ -1124,7 +1124,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: