summaryrefslogtreecommitdiff
path: root/apps/app_while.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-04-27 01:50:53 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-04-27 01:50:53 +0000
commita1d24f740fd7dd66d2dab1b735951ef4540c3b7c (patch)
tree147d70d4182ec8fad9524a03db5d3fd42fccf2a2 /apps/app_while.c
parent2d643dbc42eff9819804d57a0bd8c36198131a48 (diff)
help text cleanups (bug #4072, with mods)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5508 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_while.c')
-rwxr-xr-xapps/app_while.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/apps/app_while.c b/apps/app_while.c
index 748619ac6..71e821adc 100755
--- a/apps/app_while.c
+++ b/apps/app_while.c
@@ -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";