summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2024-11-22 16:34:05 (GMT)
committerGitHub <noreply@github.com>2024-11-22 16:34:05 (GMT)
commita5440d4a38316cc709ce0304175beda124b8e7f4 (patch)
treed9e81096d60a28f99a8d9f5582774a73f9174ff2 /Doc
parent1848ce61f349533ae5892a8c24c2e0e3c364fc8a (diff)
downloadcpython-a5440d4a38316cc709ce0304175beda124b8e7f4.zip
cpython-a5440d4a38316cc709ce0304175beda124b8e7f4.tar.gz
cpython-a5440d4a38316cc709ce0304175beda124b8e7f4.tar.bz2
gh-86463: Fix a trailing space in argparse.rst (#127162)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/argparse.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
index c5882c2..e574511 100644
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -195,7 +195,7 @@ your usage messages.
When a custom usage message is specified for the main parser, you may also want to
consider passing the ``prog`` argument to :meth:`~ArgumentParser.add_subparsers`
or the ``prog`` and the ``usage`` arguments to
-:meth:`~_SubParsersAction.add_parser`, to ensure consistent command prefixes and
+:meth:`~_SubParsersAction.add_parser`, to ensure consistent command prefixes and
usage information across subparsers.