diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-08-27 15:00:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-27 15:00:07 (GMT) |
commit | 752d5254f57a99ac2d89034fceb3ce9fbad02440 (patch) | |
tree | 17ed2f9cedd80a2a0bccf083eb11e649877b6871 | |
parent | 07c0e24748edc1e502c949a9f7276b6dbbff9b0d (diff) | |
download | cpython-752d5254f57a99ac2d89034fceb3ce9fbad02440.zip cpython-752d5254f57a99ac2d89034fceb3ce9fbad02440.tar.gz cpython-752d5254f57a99ac2d89034fceb3ce9fbad02440.tar.bz2 |
[3.12] Fix grammatical error in stringprep documentation (GH-108414) (#108537)
Fix grammatical error in stringprep documentation (GH-108414)
Remove the word "them", which didn't make grammatical sense.
(cherry picked from commit cd0a8aece974330ef44ffe4e0f2e8aa632e98438)
Co-authored-by: Matthew James Kraai <kraai@ftbfs.org>
Co-authored-by: KRAAI, MATTHEW [VISUS] <mkraai@its.jnj.com>
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
-rw-r--r-- | Doc/library/stringprep.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stringprep.rst b/Doc/library/stringprep.rst index 5cfb533..c6d78a3 100644 --- a/Doc/library/stringprep.rst +++ b/Doc/library/stringprep.rst @@ -27,7 +27,7 @@ procedure are part of the profile. One example of a ``stringprep`` profile is ``nameprep``, which is used for internationalized domain names. The module :mod:`stringprep` only exposes the tables from :rfc:`3454`. As these -tables would be very large to represent them as dictionaries or lists, the +tables would be very large to represent as dictionaries or lists, the module uses the Unicode character database internally. The module source code itself was generated using the ``mkstringprep.py`` utility. |