summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2022-02-24 12:44:20 -0500
committerKevin Van Brunt <kmvanbrunt@gmail.com>2022-02-24 12:44:20 -0500
commit5ce3a64e41258b6a694ad45bb1c604be53a1e974 (patch)
tree102e94f205ecf3e440cf498d5d3fbbd0f5ecea32
parentfde6b72a1e6d5875fb353702b702a14b14858b61 (diff)
downloadcmd2-git-5ce3a64e41258b6a694ad45bb1c604be53a1e974.tar.gz
Fixed spelling in a docstring
-rw-r--r--cmd2/command_definition.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/command_definition.py b/cmd2/command_definition.py
index 2f2b6878..cd00de2a 100644
--- a/cmd2/command_definition.py
+++ b/cmd2/command_definition.py
@@ -98,7 +98,7 @@ class CommandSet(object):
def on_register(self, cmd: 'cmd2.Cmd') -> None:
"""
Called by cmd2.Cmd as the first step to registering a CommandSet. The commands defined in this class have
- not be added to the CLI object at this point. Subclasses can override this to perform any initialization
+ not been added to the CLI object at this point. Subclasses can override this to perform any initialization
requiring access to the Cmd object (e.g. configure commands and their parsers based on CLI state data).
:param cmd: The cmd2 main application