]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Use subcommand over sub-command in argparse docs (#142488)
authorSavannah Ostrowski <savannah@python.org>
Thu, 11 Dec 2025 17:42:36 +0000 (09:42 -0800)
committerGitHub <noreply@github.com>
Thu, 11 Dec 2025 17:42:36 +0000 (17:42 +0000)
Doc/library/argparse.rst

index 71c4f09488654615010fcec1cd1d21884dbcd982..d50ec34e54d710d2d527f3fe5cde78540ef60e75 100644 (file)
@@ -1679,7 +1679,7 @@ The Namespace object
 Other utilities
 ---------------
 
-Sub-commands
+Subcommands
 ^^^^^^^^^^^^
 
 .. method:: ArgumentParser.add_subparsers(*, [title], [description], [prog], \
@@ -1708,7 +1708,7 @@ Sub-commands
    * *description* - description for the sub-parser group in help output, by
      default ``None``
 
-   * *prog* - usage information that will be displayed with sub-command help,
+   * *prog* - usage information that will be displayed with subcommand help,
      by default the name of the program and any positional arguments before the
      subparser argument
 
@@ -1718,7 +1718,7 @@ Sub-commands
    * action_ - the basic type of action to be taken when this argument is
      encountered at the command line
 
-   * dest_ - name of the attribute under which sub-command name will be
+   * dest_ - name of the attribute under which subcommand name will be
      stored; by default ``None`` and no value is stored
 
    * required_ - Whether or not a subcommand must be provided, by default