mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 04:30:28 +00:00
help text cleanups (bug #4072, with mods)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5508 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -28,14 +28,16 @@
|
||||
|
||||
|
||||
static char *exec_app = "ExecIf";
|
||||
static char *exec_desc = " ExecIF (<expr>|<app>|<data>)\n"
|
||||
static char *exec_desc =
|
||||
"Usage: ExecIF (<expr>|<app>|<data>)\n"
|
||||
"If <expr> is true, execute and return the result of <app>(<data>).\n"
|
||||
"If <expr> is true, but <app> is not found, then the application\n"
|
||||
"will return a non-zero value.";
|
||||
static char *exec_synopsis = "ExecIF (<expr>|<app>|<data>)";
|
||||
static char *exec_synopsis = "Conditional exec";
|
||||
|
||||
static char *start_app = "While";
|
||||
static char *start_desc = " While(<expr>)\n"
|
||||
static char *start_desc =
|
||||
"Usage: While(<expr>)\n"
|
||||
"Start a While Loop. Execution will return to this point when\n"
|
||||
"EndWhile is called until expr is no longer true.\n";
|
||||
|
||||
@@ -43,7 +45,8 @@ static char *start_synopsis = "Start A While Loop";
|
||||
|
||||
|
||||
static char *stop_app = "EndWhile";
|
||||
static char *stop_desc = " EndWhile()\n"
|
||||
static char *stop_desc =
|
||||
"Usage: EndWhile()\n"
|
||||
"Return to the previous called While\n\n";
|
||||
|
||||
static char *stop_synopsis = "End A While Loop";
|
||||
|
Reference in New Issue
Block a user