diff options
author | thueringa <thueringa@users.noreply.github.com> | 2022-05-12 03:25:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-12 03:25:09 (GMT) |
commit | f67d71b431af064409c1f41f6d73becee01882ae (patch) | |
tree | bff72cabb5612c77ae6877f2cd4e03d8991add10 /Doc/library | |
parent | 1a9645f5374325b41b559138ce9edb61da032b1e (diff) | |
download | cpython-f67d71b431af064409c1f41f6d73becee01882ae.zip cpython-f67d71b431af064409c1f41f6d73becee01882ae.tar.gz cpython-f67d71b431af064409c1f41f6d73becee01882ae.tar.bz2 |
Fix typo in argparse docs. (GH-92691)
# Fix typo in argparse docs.
> Sometimes, when dealing with **a** particularly long argument list**s**, [...]
Mixture between plural and singular forms is incorrect. Use singular consistently since typically only a single argument list is employed. Change to:
> Sometimes, when dealing with a particularly long argument list, [...]
No issue was opened, since this is a trivial change.
Automerge-Triggered-By: GH:rhettinger
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/argparse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index b5a2b79..1f40e4a 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -555,7 +555,7 @@ disallowed. fromfile_prefix_chars ^^^^^^^^^^^^^^^^^^^^^ -Sometimes, when dealing with a particularly long argument lists, it +Sometimes, 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 |