summaryrefslogtreecommitdiff
path: root/docs/features/argument_processing.rst
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-02-13 22:34:22 -0500
committerGitHub <noreply@github.com>2020-02-13 22:34:22 -0500
commit013b9e0a2c75e17f8aa0e0f7cbe50d84d2f657d8 (patch)
treee3cc4c27ed21a2e1d01caae0bda4ea51c44e59f6 /docs/features/argument_processing.rst
parentad0e2ae0d0d426fe08353fd82d1f9ff051be9108 (diff)
parent7fe5cf7c1ab7d7a68991d1aeebaa338f7c5d2fd0 (diff)
downloadcmd2-git-013b9e0a2c75e17f8aa0e0f7cbe50d84d2f657d8.tar.gz
Merge pull request #887 from python-cmd2/completion_docs
Completion docs
Diffstat (limited to 'docs/features/argument_processing.rst')
-rw-r--r--docs/features/argument_processing.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/features/argument_processing.rst b/docs/features/argument_processing.rst
index 9d98ea93..82244d7e 100644
--- a/docs/features/argument_processing.rst
+++ b/docs/features/argument_processing.rst
@@ -325,14 +325,13 @@ Subcommands are supported for commands using either the ``@with_argparser`` or
is based on argparse sub-parsers.
You may add multiple layers of subcommands for your command. ``cmd2`` will
-automatically traverse and tab-complete subcommands for all commands using
+automatically traverse and tab complete subcommands for all commands using
argparse.
-See the subcommands_ and tab_autocompletion_ example to learn more about how to
+See the subcommands_ example to learn more about how to
use subcommands in your ``cmd2`` application.
.. _subcommands: https://github.com/python-cmd2/cmd2/blob/master/examples/subcommands.py
-.. _tab_autocompletion: https://github.com/python-cmd2/cmd2/blob/master/examples/tab_autocompletion.py
Argparse Extensions