From dc97f5576fe9e9ef59d7efb89dccd1280fbf292a Mon Sep 17 00:00:00 2001 From: thueringa Date: Thu, 12 May 2022 05:25:09 +0200 Subject: [PATCH] Fix typo in argparse docs. (GH-92691) > 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 (cherry picked from commit f67d71b431af064409c1f41f6d73becee01882ae) --- Doc/library/argparse.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index fa731fec3a85a6..8989d1cef1bd51 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