From 7ec16a6af753a1f51a62fbdcd417bbd2eca12a44 Mon Sep 17 00:00:00 2001 From: Martin Pycko Date: Tue, 4 Nov 2003 00:44:51 +0000 Subject: [PATCH] Fix description of Cut application git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1688 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_cut.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/app_cut.c b/apps/app_cut.c index 0bb1ab71d1..1d3cf5b89e 100755 --- a/apps/app_cut.c +++ b/apps/app_cut.c @@ -34,10 +34,10 @@ static char *app_cut = "Cut"; static char *cut_synopsis = "Cut(newvar=varname|delimiter|fieldspec)"; static char *cut_descrip = -"Cut(varname=varname,delimiter,field)\n" -" newvar - result string is set to this variable\n" +"Cut(newvar=varname,delimiter,field)\n" +" newvar - new variable created from result string\n" " varname - variable you want cut\n" -" delimiter - defaults to -\n" +" delimiter - defaults to '-'\n" " fieldspec - number of the field you want (1-based offset)\n" " may also be specified as a range (with -)\n" " or group of ranges and fields (with &)\n"