diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-01 04:32:18 -0500 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-03-01 04:32:18 -0500 |
commit | 25927ad1405ba6f62dee49dd07cdd28c08332f66 (patch) | |
tree | 78901114160939640cffea901e25a9fae878e9b3 | |
parent | 99e5a12aeef144e52fe7168f2f54ae6fd3735b90 (diff) | |
download | cmd2-git-25927ad1405ba6f62dee49dd07cdd28c08332f66.tar.gz |
Fixed typo
-rw-r--r-- | tests/test_completion.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_completion.py b/tests/test_completion.py index 222eff48..33830ec3 100644 --- a/tests/test_completion.py +++ b/tests/test_completion.py @@ -427,7 +427,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 |