Skip to content

Commit 8ef11cd

Browse files
committed
Updated docstring
1 parent 06bd735 commit 8ef11cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd2/cmd2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2207,7 +2207,7 @@ def _cmdloop(self) -> bool:
22072207
# ----- Alias subcommand functions -----
22082208

22092209
def alias_create(self, args: argparse.Namespace):
2210-
"""Create or overwrites an alias"""
2210+
"""Create or overwrite an alias"""
22112211

22122212
# Validate the alias name
22132213
valid, errmsg = self.statement_parser.is_valid_command(args.name)
@@ -2335,7 +2335,7 @@ def do_alias(self, args: argparse.Namespace):
23352335
# ----- Macro subcommand functions -----
23362336

23372337
def macro_create(self, args: argparse.Namespace):
2338-
"""Create or overwrites a macro"""
2338+
"""Create or overwrite a macro"""
23392339

23402340
# Validate the macro name
23412341
valid, errmsg = self.statement_parser.is_valid_command(args.name)

0 commit comments

Comments
 (0)