summaryrefslogtreecommitdiff
path: root/examples/subcommands.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2018-03-01 23:39:37 -0500
committerKevin Van Brunt <kmvanbrunt@gmail.com>2018-03-01 23:39:37 -0500
commitc1e5745a9d77fd9c2fc40f9b40390fdb2f92d0ed (patch)
tree4376e32f6934e6c971efd78067e7a6e0fc6a9701 /examples/subcommands.py
parenteb933160ccd3db266b30fa9466922ec785afea92 (diff)
downloadcmd2-git-c1e5745a9d77fd9c2fc40f9b40390fdb2f92d0ed.tar.gz
Fixed typo
Diffstat (limited to 'examples/subcommands.py')
-rwxr-xr-xexamples/subcommands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/subcommands.py b/examples/subcommands.py
index e77abc61..a278fd8b 100755
--- a/examples/subcommands.py
+++ b/examples/subcommands.py
@@ -24,7 +24,7 @@ class SubcommandsExample(cmd2.Cmd):
self.poutput(args.x * args.y)
def base_bar(self, args):
- """bar sucommand of base command"""
+ """bar subcommand of base command"""
self.poutput('((%s))' % args.z)
# create the top-level parser for the base command