aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_while.c
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-06 19:04:45 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-06 19:04:45 +0000
commit92ac6820ee5bc6595e8e0b6f7e14fd6983146acc (patch)
tree7700cf1ff2f8a29dd724b11a624ddc8f57a199b5 /apps/app_while.c
parent15d67c4bef332035bc5daf53e7669680428804c1 (diff)
"show application <foo>" changes for clarity.
(closes issue #11171, reported and patched by blitzrage) Many thanks! git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89044 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_while.c')
-rw-r--r--apps/app_while.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/apps/app_while.c b/apps/app_while.c
index 43d976257..7569ccd17 100644
--- a/apps/app_while.c
+++ b/apps/app_while.c
@@ -46,30 +46,26 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
static char *start_app = "While";
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";
+" While(<expr>): Start a While Loop. Execution will return to this\n"
+"point when EndWhile() is called until expr is no longer true.\n";
static char *start_synopsis = "Start a while loop";
static char *stop_app = "EndWhile";
static char *stop_desc =
-"Usage: EndWhile()\n"
-"Return to the previous called While\n";
+" EndWhile(): Return to the previous called While()\n";
static char *stop_synopsis = "End a while loop";
static char *exit_app = "ExitWhile";
static char *exit_desc =
-"Usage: ExitWhile()\n"
-"Exits a While loop, whether or not the conditional has been satisfied.\n";
+" ExitWhile(): Exits a While() loop, whether or not the conditional has been satisfied.\n";
static char *exit_synopsis = "End a While loop";
static char *continue_app = "ContinueWhile";
static char *continue_desc =
-"Usage: ContinueWhile()\n"
-"Returns to the top of the while loop and re-evaluates the conditional.\n";
+" ContinueWhile(): Returns to the top of the while loop and re-evaluates the conditional.\n";
static char *continue_synopsis = "Restart a While loop";
#define VAR_SIZE 64