aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_while.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-27 01:50:53 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-27 01:50:53 +0000
commit2f0559dad7c3363c0d3f9df54f3ccb3044c07f8c (patch)
tree147d70d4182ec8fad9524a03db5d3fd42fccf2a2 /apps/app_while.c
parent8607bf9fbeac3eb84e0fd8ecfa66a710a0526f78 (diff)
help text cleanups (bug #4072, with mods)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5508 f38db490-d61c-443f-a65b-d21fe96a405b
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";