summaryrefslogtreecommitdiff
path: root/cmd2/cmd2.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-02-21 21:15:04 -0500
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-02-21 21:15:04 -0500
commit163dcad22375eb84ecd8de311c344a9b6630c685 (patch)
treeff961fea0066112a77d714e74bd17b1e96e5a270 /cmd2/cmd2.py
parentbb376455b46e2fceba21120eba976465ea8d2c5a (diff)
downloadcmd2-git-163dcad22375eb84ecd8de311c344a9b6630c685.tar.gz
Updated macro documentation0.9.9
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 d6da8b2b..15175123 100644
--- a/cmd2/cmd2.py
+++ b/cmd2/cmd2.py
@@ -2431,7 +2431,7 @@ class Cmd(cmd.Cmd):
# Top-level parser for macro
macro_description = ("Manage macros\n"
"\n"
- "A macro is similar to an alias, but it can take arguments when called.")
+ "A macro is similar to an alias, but it can contain argument placeholders.")
macro_epilog = ("See also:\n"
" alias")
macro_parser = ACArgumentParser(description=macro_description, epilog=macro_epilog, prog='macro')
@@ -2443,7 +2443,7 @@ class Cmd(cmd.Cmd):
macro_create_help = "create or overwrite a macro"
macro_create_description = "Create or overwrite a macro"
- macro_create_epilog = ("A macro is similar to an alias, but it can take arguments when called.\n"
+ macro_create_epilog = ("A macro is similar to an alias, but it can contain argument placeholders.\n"
"Arguments are expressed when creating a macro using {#} notation where {1}\n"
"means the first argument.\n"
"\n"