From 356721a45cdb0b1f733602287d432f861fb24102 Mon Sep 17 00:00:00 2001 From: tilghman Date: Tue, 31 Jul 2007 01:10:47 +0000 Subject: Mostly cleanup of documentation to substitute the pipe with the comma, but a few other formatting cleanups, too. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@77808 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_sayunixtime.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'apps/app_sayunixtime.c') diff --git a/apps/app_sayunixtime.c b/apps/app_sayunixtime.c index 7d7a74c7f..a22666a6d 100644 --- a/apps/app_sayunixtime.c +++ b/apps/app_sayunixtime.c @@ -49,7 +49,7 @@ static char *app_datetime = "DateTime"; static char *sayunixtime_synopsis = "Says a specified time in a custom format"; static char *sayunixtime_descrip = -"SayUnixTime([unixtime][|[timezone][|format]])\n" +"SayUnixTime([unixtime][,[timezone][,format]])\n" " unixtime: time, in seconds since Jan 1, 1970. May be negative.\n" " defaults to now.\n" " timezone: timezone, see /usr/share/zoneinfo for a list.\n" @@ -57,7 +57,7 @@ static char *sayunixtime_descrip = " format: a format the time is to be said in. See voicemail.conf.\n" " defaults to \"ABdY 'digits/at' IMp\"\n"; static char *datetime_descrip = -"DateTime([unixtime][|[timezone][|format]])\n" +"DateTime([unixtime][,[timezone][,format]])\n" " unixtime: time, in seconds since Jan 1, 1970. May be negative.\n" " defaults to now.\n" " timezone: timezone, see /usr/share/zoneinfo for a list.\n" @@ -69,9 +69,9 @@ static char *datetime_descrip = static int sayunixtime_exec(struct ast_channel *chan, void *data) { AST_DECLARE_APP_ARGS(args, - AST_APP_ARG(timeval); - AST_APP_ARG(timezone); - AST_APP_ARG(format); + AST_APP_ARG(timeval); + AST_APP_ARG(timezone); + AST_APP_ARG(format); ); char *parse; int res = 0; -- cgit v1.2.3