summaryrefslogtreecommitdiff
path: root/docs/features/builtin_commands.rst
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-02-06 23:40:18 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2020-02-06 23:40:18 -0500
commit138c28d18cee56ae09416cc00d2d461e983d90e8 (patch)
tree81a8935b7a2b8ea1c7ba429a3bde25db9c33deee /docs/features/builtin_commands.rst
parent8563795fee9a8b865c7e67cc0fd19dc4c5593e13 (diff)
parent3c627af7c1e22bcd0cd0a49dee05fd6b626bccc5 (diff)
downloadcmd2-git-138c28d18cee56ae09416cc00d2d461e983d90e8.tar.gz
Merge branch 'master' into color_autocomplete
Diffstat (limited to 'docs/features/builtin_commands.rst')
-rw-r--r--docs/features/builtin_commands.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/features/builtin_commands.rst b/docs/features/builtin_commands.rst
index 83d3176d..0db05c96 100644
--- a/docs/features/builtin_commands.rst
+++ b/docs/features/builtin_commands.rst
@@ -1,7 +1,7 @@
Builtin Commands
================
-Applications which subclass :class:`cmd2.cmd2.Cmd` inherit a number of commands
+Applications which subclass :class:`cmd2.Cmd` inherit a number of commands
which may be useful to your users. Developers can
:ref:`features/builtin_commands:Remove Builtin Commands` if they do not want
them to be part of the application.
@@ -130,9 +130,9 @@ This command lists available shortcuts. See
Remove Builtin Commands
-----------------------
-Developers may not want to offer the commands builtin to :class:`cmd2.cmd2.Cmd`
+Developers may not want to offer the commands builtin to :class:`cmd2.Cmd`
to users of their application. To remove a command you must delete the method
-implementing that command from the :class:`cmd2.cmd2.Cmd` object at runtime.
+implementing that command from the :class:`cmd2.Cmd` object at runtime.
For example, if you wanted to remove the :ref:`features/builtin_commands:shell`
command from your application::