From 798a41c37cf4332452047c52e319efe43b661d34 Mon Sep 17 00:00:00 2001 From: Yongzi Li <204532581+Yzi-Li@users.noreply.github.com> Date: Tue, 24 Jun 2025 06:53:33 +0800 Subject: [PATCH] Docs: Use `arguments` to replace `args` in `argparse.rst` (GH-135510) (cherry picked from commit caad163b691b2343d823541cfbf741f481ee9f3e) Co-authored-by: Yongzi Li <204532581+Yzi-Li@users.noreply.github.com> --- 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 1acaab444bdb27..46c8ead493340f 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -862,7 +862,7 @@ See also :ref:`specifying-ambiguous-arguments`. The supported values are: .. index:: single: + (plus); in argparse module -* ``'+'``. Just like ``'*'``, all command-line args present are gathered into a +* ``'+'``. Just like ``'*'``, all command-line arguments present are gathered into a list. Additionally, an error message will be generated if there wasn't at least one command-line argument present. For example::