diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-02-06 23:30:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-06 23:30:33 -0500 |
commit | 3c627af7c1e22bcd0cd0a49dee05fd6b626bccc5 (patch) | |
tree | ba04d09ce9d0df114890db8e31dd6cb6988f9d7b /docs/features/builtin_commands.rst | |
parent | c7ac2e965d025806ce5baddfc718814e3e58d639 (diff) | |
parent | 90152df53478a00a3c64ba5ece160485408680dd (diff) | |
download | cmd2-git-3c627af7c1e22bcd0cd0a49dee05fd6b626bccc5.tar.gz |
Merge pull request #875 from python-cmd2/doc_streamline
Doc streamline
Diffstat (limited to 'docs/features/builtin_commands.rst')
-rw-r--r-- | docs/features/builtin_commands.rst | 6 |
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:: |