diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-01 23:39:37 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-01 23:39:37 -0500 |
commit | c1e5745a9d77fd9c2fc40f9b40390fdb2f92d0ed (patch) | |
tree | 4376e32f6934e6c971efd78067e7a6e0fc6a9701 | |
parent | eb933160ccd3db266b30fa9466922ec785afea92 (diff) | |
download | cmd2-git-c1e5745a9d77fd9c2fc40f9b40390fdb2f92d0ed.tar.gz |
Fixed typo
-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 |