summaryrefslogtreecommitdiff
path: root/cmd2/cmd2.py
diff options
context:
space:
mode:
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r--cmd2/cmd2.py4
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)