diff options
Diffstat (limited to 'examples/subcommands.py')
-rwxr-xr-x | examples/subcommands.py | 2 |
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 |