[Python-checkins] Docs: fix typo in sqlite3.rst (GH-94798)

miss-islington webhook-mailer at python.org
Thu Jul 14 17:58:18 EDT 2022


https://github.com/python/cpython/commit/1cf0305ba563228143ecc6622d066590bae35309
commit: 1cf0305ba563228143ecc6622d066590bae35309
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-07-14T14:58:14-07:00
summary:

Docs: fix typo in sqlite3.rst (GH-94798)


Colum -> Column
(cherry picked from commit 9ea72e9d8d9c7ff7c0cec4bacf6071ff4f1f6238)

Co-authored-by: Ikko Ashimine <eltociear at gmail.com>

files:
M Doc/library/sqlite3.rst

diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst
index 7030059609ff9..808adb1323015 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -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:
 



More information about the Python-checkins mailing list