[Python-checkins] gh-92368: Fix missing possessive apostrophe (GH-92397)

miss-islington webhook-mailer at python.org
Fri May 6 10:13:19 EDT 2022


https://github.com/python/cpython/commit/17f3b5cbfaada66b45422e80c06b0c5f8157a736
commit: 17f3b5cbfaada66b45422e80c06b0c5f8157a736
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-05-06T07:12:59-07:00
summary:

gh-92368: Fix missing possessive apostrophe (GH-92397)


* Fix missing possessive apostrophe
(cherry picked from commit a79001ee16b3ea8b5d0fad595c969d9e1b7627f3)

Co-authored-by: gophra <105054704+gophra at users.noreply.github.com>

files:
M Doc/tutorial/stdlib.rst

diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst
index aac1ae3a8a6b4..6871ed1e8689b 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



More information about the Python-checkins mailing list