]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] Docs: Fix a typo in the 'Non-ASCII characters in names' section (GH-148043...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 4 Apr 2026 16:51:39 +0000 (18:51 +0200)
committerGitHub <noreply@github.com>
Sat, 4 Apr 2026 16:51:39 +0000 (16:51 +0000)
(cherry picked from commit b1d2d9829cfb33f0487ce00c19fa57ddefeb1b50)

Co-authored-by: Stan Ulbrych <stan@python.org>
Doc/reference/lexical_analysis.rst

index eaa0b890d4ebbef2184bf029cf49b14791a185d9..b8c447a893b11f4bc7c3d9d6aca9e2e6547785a0 100644 (file)
@@ -556,7 +556,7 @@ start with a character in the "letter-like" set ``xid_start``,
 and the remaining characters must be in the "letter- and digit-like" set
 ``xid_continue``.
 
-These sets based on the *XID_Start* and *XID_Continue* sets as defined by the
+These sets are based on the *XID_Start* and *XID_Continue* sets as defined by the
 Unicode standard annex `UAX-31`_.
 Python's ``xid_start`` additionally includes the underscore (``_``).
 Note that Python does not necessarily conform to `UAX-31`_.