From c78761cc7cd994c8ccb1dfdd927292cb0963f74b Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Wed, 13 Jul 2005 14:04:28 +0000 Subject: [PATCH] fix typo in app description (bug #4697) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@6117 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_indications.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/res/res_indications.c b/res/res_indications.c index e998be582a..4ed77e4e98 100755 --- a/res/res_indications.c +++ b/res/res_indications.c @@ -54,12 +54,12 @@ static char help_show_indications[] = " indications for the specified countries.\n"; char *playtones_desc= -"PlayTone(arg): Plays a tone list. Execution will continue with the next step immediately,\n" +"PlayTones(): Plays a tone list. Execution will continue with the next step immediately,\n" "while the tones continue to play.\n" "Arg is either the tone name defined in the indications.conf configuration file, or a directly\n" "specified list of frequencies and durations.\n" -"See indications.conf for a description of the specification of a tonelist.\n\n" -"Use the StopPlaytones application to stop the tones playing. \n"; +"See the sample indications.conf for a description of the specification of a tonelist.\n\n" +"Use the StopPlayTones application to stop the tones playing. \n"; /* * Implementation of functions provided by this module @@ -388,8 +388,8 @@ int load_module(void) ast_cli_register(&add_indication_cli); ast_cli_register(&remove_indication_cli); ast_cli_register(&show_indications_cli); - ast_register_application("Playtones", handle_playtones, "Play a tone list", playtones_desc); - ast_register_application("StopPlaytones", handle_stopplaytones, "Stop playing a tone list","Stop playing a tone list"); + ast_register_application("PlayTones", handle_playtones, "Play a tone list", playtones_desc); + ast_register_application("StopPlayTones", handle_stopplaytones, "Stop playing a tone list","Stop playing a tone list"); return 0; } -- 2.47.2