From bfbabb556cd7987a35bcb92af746ecf22d3f0ae6 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Wed, 15 Apr 2026 02:06:41 +0200 Subject: [PATCH] [3.14] tiny edit, fix a couple of minor typos in enum and sqlite3 docs (GH-148580) (#148581) tiny edit, fix a couple of minor typos in enum and sqlite3 docs (GH-148580) pair of minor doc typo fixes (cherry picked from commit 236aa0a4e2106f98757e12a9f656f98d91f03c13) Co-authored-by: Gregory P. Smith <68491+gpshead@users.noreply.github.com> --- Doc/library/enum.rst | 2 +- Doc/library/sqlite3.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index c07f41930fac..11339dc9fe94 100644 --- a/Doc/library/enum.rst +++ b/Doc/library/enum.rst @@ -245,7 +245,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 7f8a0b29534f..c2d309b3afc6 100644 --- a/Doc/library/sqlite3.rst +++ b/Doc/library/sqlite3.rst @@ -57,7 +57,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 -- 2.47.3