]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: fix typo in sqlite3.rst (#94798)
authorIkko Ashimine <eltociear@gmail.com>
Thu, 14 Jul 2022 21:47:46 +0000 (06:47 +0900)
committerGitHub <noreply@github.com>
Thu, 14 Jul 2022 21:47:46 +0000 (23:47 +0200)
Colum -> Column

Doc/library/sqlite3.rst

index bdff071b34ca05573fe5adc999d1174168922260..d2997dc9251786a744769d0b9e2fa5d7862fb4fe 100644 (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: