diff options
| author | thueringa <thueringa@users.noreply.github.com> | 2022-05-13 21:09:06 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-13 21:09:06 (GMT) |
| commit | 56e9fb3e3b1c51c9c32dda9d51f0379f711bc7d7 (patch) | |
| tree | 6a07ca14be71b405919bcdbfc4a8a8808cca05bb | |
| parent | 597ff241889f975a3ccc286ddb1258208dc57aea (diff) | |
| download | cpython-56e9fb3e3b1c51c9c32dda9d51f0379f711bc7d7.zip cpython-56e9fb3e3b1c51c9c32dda9d51f0379f711bc7d7.tar.gz cpython-56e9fb3e3b1c51c9c32dda9d51f0379f711bc7d7.tar.bz2 | |
Fix typo in argparse docs. (GH-92691) (#92729)
| -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 d853d2a..e8e54d6 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -502,7 +502,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 |
