aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-11-22 14:17:20 -0800
committerGitHub <noreply@github.com>2022-11-22 14:17:20 -0800
commitb4ae5b76eda087985624e8c1ef4f9eb825d9dd89 (patch)
tree3d08c963059e5382d6174025b8a4b98a411ce35b
parentGH-92892: Add section about variadic functions to ctypes documentation (GH-99... (diff)
downloadcpython-b4ae5b76eda087985624e8c1ef4f9eb825d9dd89.tar.gz
cpython-b4ae5b76eda087985624e8c1ef4f9eb825d9dd89.tar.bz2
cpython-b4ae5b76eda087985624e8c1ef4f9eb825d9dd89.zip
[3.11] gh-99650 : Updated argparse docs (GH-99653) (GH-99705)
-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 bcbb38a05e8..67ca6e77bc0 100644
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -1933,7 +1933,7 @@ Argument groups
.. method:: ArgumentParser.add_argument_group(title=None, description=None)
By default, :class:`ArgumentParser` groups command-line arguments into
- "positional arguments" and "optional arguments" when displaying help
+ "positional arguments" and "options" when displaying help
messages. When there is a better conceptual grouping of arguments than this
default one, appropriate groups can be created using the
:meth:`add_argument_group` method::