aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-30 16:01:50 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-30 16:01:50 +0000
commit75168aeb12e5b523f471565fbe22f6a08f19c0da (patch)
tree8c597c4fcf2c5ece9bf2baf3ec14ee8810cb25ca /apps
parente9ee3dbac3ff0e582fff864ffccd8a57679d86b1 (diff)
fix various typos and other bits (from Ian Kinner)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@30800 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_alarmreceiver.c2
-rw-r--r--apps/app_directory.c2
-rw-r--r--apps/app_disa.c2
-rw-r--r--apps/app_speech_utils.c2
-rw-r--r--apps/app_stack.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/apps/app_alarmreceiver.c b/apps/app_alarmreceiver.c
index 2754be4f4..988ec9664 100644
--- a/apps/app_alarmreceiver.c
+++ b/apps/app_alarmreceiver.c
@@ -70,7 +70,7 @@ typedef struct event_node event_node_t;
static char *app = "AlarmReceiver";
-static char *synopsis = "Provide support for receving alarm reports from a burglar or fire alarm panel";
+static char *synopsis = "Provide support for receiving alarm reports from a burglar or fire alarm panel";
static char *descrip =
" AlarmReceiver(): Only 1 signalling format is supported at this time: Ademco\n"
"Contact ID. This application should be called whenever there is an alarm\n"
diff --git a/apps/app_directory.c b/apps/app_directory.c
index 0dc7dc1c5..f9dbbc412 100644
--- a/apps/app_directory.c
+++ b/apps/app_directory.c
@@ -53,7 +53,7 @@ static char *descrip =
"the calling channel with a directory of extensions from which they can search\n"
"by name. The list of names and corresponding extensions is retrieved from the\n"
"voicemail configuration file, voicemail.conf.\n"
-" This applicaiton will immediate exit if one of the following DTMF digits are\n"
+" This application will immediately exit if one of the following DTMF digits are\n"
"received and the extension to jump to exists:\n"
" 0 - Jump to the 'o' extension, if it exists.\n"
" * - Jump to the 'a' extension, if it exists.\n\n"
diff --git a/apps/app_disa.c b/apps/app_disa.c
index b49fe47a6..65a1e07c8 100644
--- a/apps/app_disa.c
+++ b/apps/app_disa.c
@@ -70,7 +70,7 @@ static char *descrip =
"Be aware that using this compromises the security of your PBX.\n\n"
"The arguments to this application (in extensions.conf) allow either\n"
"specification of a single global passcode (that everyone uses), or\n"
- "individual passcodes contained in a file. It also allow specification\n"
+ "individual passcodes contained in a file. It also allows specification\n"
"of the context on which the user will be dialing. If no context is\n"
"specified, the DISA application defaults the context to \"disa\".\n"
"Presumably a normal system will have a special context set up\n"
diff --git a/apps/app_speech_utils.c b/apps/app_speech_utils.c
index a38fed12b..b759d5f55 100644
--- a/apps/app_speech_utils.c
+++ b/apps/app_speech_utils.c
@@ -759,7 +759,7 @@ static int load_module(void *mod)
res |= ast_register_application("SpeechUnloadGrammar", speech_unload, "Unload a Grammar", speechunload_descrip);
res |= ast_register_application("SpeechActivateGrammar", speech_activate, "Activate a Grammar", speechactivategrammar_descrip);
res |= ast_register_application("SpeechDeactivateGrammar", speech_deactivate, "Deactivate a Grammar", speechdeactivategrammar_descrip);
- res |= ast_register_application("SpeechStart", speech_start, "Start recognizing", speechstart_descrip);
+ res |= ast_register_application("SpeechStart", speech_start, "Start recognizing voice in the audio stream", speechstart_descrip);
res |= ast_register_application("SpeechBackground", speech_background, "Play a sound file and wait for speech to be recognized", speechbackground_descrip);
res |= ast_register_application("SpeechDestroy", speech_destroy, "End speech recognition", speechdestroy_descrip);
res |= ast_register_application("SpeechProcessingSound", speech_processing_sound, "Change background processing sound", speechprocessingsound_descrip);
diff --git a/apps/app_stack.c b/apps/app_stack.c
index 4d21d0f8c..e3783d66b 100644
--- a/apps/app_stack.c
+++ b/apps/app_stack.c
@@ -51,7 +51,7 @@ static const char *app_return = "Return";
static const char *app_pop = "StackPop";
static const char *gosub_synopsis = "Jump to label, saving return address";
-static const char *gosubif_synopsis = "Jump to label, saving return address";
+static const char *gosubif_synopsis = "Conditionally jump to label, saving return address";
static const char *return_synopsis = "Return from gosub routine";
static const char *pop_synopsis = "Remove one address from gosub stack";