diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-10-03 16:59:10 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2018-10-03 16:59:10 -0400 |
commit | 8ef11cd0f06a3a565503a40d7fc55b9d9f53ad15 (patch) | |
tree | 6e30acb19fe77a98f229be78cd520ff9b5b29c74 /cmd2/cmd2.py | |
parent | 06bd7356bbce853e5b1202561f50ce15184db370 (diff) | |
download | cmd2-git-8ef11cd0f06a3a565503a40d7fc55b9d9f53ad15.tar.gz |
Updated docstring
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r-- | cmd2/cmd2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py index 6859de5b..420ef396 100644 --- a/cmd2/cmd2.py +++ b/cmd2/cmd2.py @@ -2207,7 +2207,7 @@ class Cmd(cmd.Cmd): # ----- Alias subcommand functions ----- def alias_create(self, args: argparse.Namespace): - """Create or overwrites an alias""" + """Create or overwrite an alias""" # Validate the alias name valid, errmsg = self.statement_parser.is_valid_command(args.name) @@ -2335,7 +2335,7 @@ class Cmd(cmd.Cmd): # ----- Macro subcommand functions ----- def macro_create(self, args: argparse.Namespace): - """Create or overwrites a macro""" + """Create or overwrite a macro""" # Validate the macro name valid, errmsg = self.statement_parser.is_valid_command(args.name) |