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

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


https://github.com/python/cpython/commit/016fd7b57fec3d9f67981b520078ca46bc4c426c
commit: 016fd7b57fec3d9f67981b520078ca46bc4c426c
branch: 3.11
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:56:30-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 575a5a1ebc07a..9da7b5403cca3 100644
--- a/Doc/library/sqlite3.rst
+++ b/Doc/library/sqlite3.rst
@@ -1356,7 +1356,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