From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 14 Jul 2022 21:56:30 +0000 (-0700) Subject: Docs: fix typo in sqlite3.rst (GH-94798) X-Git-Tag: v3.11.0b5~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=016fd7b57fec3d9f67981b520078ca46bc4c426c;p=thirdparty%2FPython%2Fcpython.git Docs: fix typo in sqlite3.rst (GH-94798) Colum -> Column (cherry picked from commit 9ea72e9d8d9c7ff7c0cec4bacf6071ff4f1f6238) Co-authored-by: Ikko Ashimine --- diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index 575a5a1ebc07..9da7b5403cca 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: