[Python-checkins] Fix typo in argparse docs. (GH-92691) (#92731)

rhettinger webhook-mailer at python.org
Fri May 13 10:01:53 EDT 2022


https://github.com/python/cpython/commit/256c6d05e29da63ec0af74553192b9d26912b7c2
commit: 256c6d05e29da63ec0af74553192b9d26912b7c2
branch: 3.9
author: thueringa <thueringa at users.noreply.github.com>
committer: rhettinger <rhettinger at users.noreply.github.com>
date: 2022-05-13T09:01:30-05:00
summary:

Fix typo in argparse docs. (GH-92691) (#92731)

files:
M Doc/library/argparse.rst

diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
index fa731fec3a85a..8989d1cef1bd5 100644
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -501,7 +501,7 @@ disallowed.
 fromfile_prefix_chars
 ^^^^^^^^^^^^^^^^^^^^^
 
-Sometimes, for example when dealing with a particularly long argument lists, it
+Sometimes, for example when dealing with a particularly long argument list, it
 may make sense to keep the list of arguments in a file rather than typing it out
 at the command line.  If the ``fromfile_prefix_chars=`` argument is given to the
 :class:`ArgumentParser` constructor, then arguments that start with any of the



More information about the Python-checkins mailing list