From: Gregory P. Smith <68491+gpshead@users.noreply.github.com> Date: Tue, 14 Apr 2026 23:29:35 +0000 (-0700) Subject: tiny edit, fix a couple of minor typos in enum and sqlite3 docs (GH-148580) X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=236aa0a4e2106f98757e12a9f656f98d91f03c13;p=thirdparty%2FPython%2Fcpython.git tiny edit, fix a couple of minor typos in enum and sqlite3 docs (GH-148580) pair of minor doc typo fixes --- diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 0a1d2a0bac33..3b9604c446f7 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -240,7 +240,7 @@ Data types .. method:: EnumType.__len__(cls) - Returns the number of member in *cls*:: + Returns the number of members in *cls*:: >>> len(Color) 3 diff --git a/Doc/library/sqlite3.rst b/Doc/library/sqlite3.rst index ff1676c5bfb5..484260e63dd5 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -55,7 +55,7 @@ This document includes four main sections: PEP written by Marc-André Lemburg. -.. We use the following practises for SQL code: +.. We use the following practices for SQL code: - UPPERCASE for keywords - snake_case for schema - single quotes for string literals