diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-11-22 16:34:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-22 16:34:05 (GMT) |
commit | a5440d4a38316cc709ce0304175beda124b8e7f4 (patch) | |
tree | d9e81096d60a28f99a8d9f5582774a73f9174ff2 /Doc | |
parent | 1848ce61f349533ae5892a8c24c2e0e3c364fc8a (diff) | |
download | cpython-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.rst | 2 |
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. |