diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-05-06 14:12:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-06 14:12:59 (GMT) |
commit | 17f3b5cbfaada66b45422e80c06b0c5f8157a736 (patch) | |
tree | 2ecb1c2a057ed35fdbda4bd1dfbd76897af39cd8 /Doc | |
parent | 229dc17f7a05c87e8b00c6882476fc4c076f9779 (diff) | |
download | cpython-17f3b5cbfaada66b45422e80c06b0c5f8157a736.zip cpython-17f3b5cbfaada66b45422e80c06b0c5f8157a736.tar.gz cpython-17f3b5cbfaada66b45422e80c06b0c5f8157a736.tar.bz2 |
gh-92368: Fix missing possessive apostrophe (GH-92397)
* Fix missing possessive apostrophe
(cherry picked from commit a79001ee16b3ea8b5d0fad595c969d9e1b7627f3)
Co-authored-by: gophra <105054704+gophra@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/tutorial/stdlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst index aac1ae3..6871ed1 100644 --- a/Doc/tutorial/stdlib.rst +++ b/Doc/tutorial/stdlib.rst @@ -327,7 +327,7 @@ Python has a "batteries included" philosophy. This is best seen through the sophisticated and robust capabilities of its larger packages. For example: * The :mod:`xmlrpc.client` and :mod:`xmlrpc.server` modules make implementing - remote procedure calls into an almost trivial task. Despite the modules + remote procedure calls into an almost trivial task. Despite the modules' names, no direct knowledge or handling of XML is needed. * The :mod:`email` package is a library for managing email messages, including |