https://github.com/python/cpython/commit/e76aa128fea8691525b482a211bef6b1c514019d commit: e76aa128fea8691525b482a211bef6b1c514019d branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: gpshead <[email protected]> date: 2026-04-14T17:06:49-07:00 summary:
[3.13] tiny edit, fix a couple of minor typos in enum and sqlite3 docs (GH-148580) (#148582) 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 <[email protected]> files: M Doc/library/enum.rst M Doc/library/sqlite3.rst diff --git a/Doc/library/enum.rst b/Doc/library/enum.rst index 6ddd7faf5a22a0..b5b44458d63a4f 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 88393c8a0ddde8..c29ce6b056c16f 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 _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
