From: Ikko Ashimine Date: Thu, 14 Jul 2022 21:47:46 +0000 (+0900) Subject: Docs: fix typo in sqlite3.rst (#94798) X-Git-Tag: v3.12.0a1~955 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9ea72e9d8d9c7ff7c0cec4bacf6071ff4f1f6238;p=thirdparty%2FPython%2Fcpython.git Docs: fix typo in sqlite3.rst (#94798) Colum -> Column --- diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index bdff071b34ca..d2997dc92517 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -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: