summaryrefslogtreecommitdiff
path: root/examples/tab_completion.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2018-10-05 13:32:04 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2018-10-05 13:32:04 -0400
commit734796b895bb85d67c651d9e8e8bf71e7d60b7e3 (patch)
tree5879270409a4992622da2933275ccaae30525ee6 /examples/tab_completion.py
parent49cbec9969b4b53248d6097d8f395d92c74f7228 (diff)
downloadcmd2-git-734796b895bb85d67c651d9e8e8bf71e7d60b7e3.tar.gz
Using sub-command instead of subcommand where possible to be consistent with argparse
Diffstat (limited to 'examples/tab_completion.py')
-rwxr-xr-xexamples/tab_completion.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tab_completion.py b/examples/tab_completion.py
index 2ec7ff70..77d62988 100755
--- a/examples/tab_completion.py
+++ b/examples/tab_completion.py
@@ -12,7 +12,7 @@ sport_item_strs = ['Bat', 'Basket', 'Basketball', 'Football', 'Space Ball']
class TabCompleteExample(cmd2.Cmd):
- """ Example cmd2 application where we a base command which has a couple subcommands."""
+ """ Example cmd2 application where we a base command which has a couple sub-commands."""
def __init__(self):
super().__init__()