aboutsummaryrefslogtreecommitdiffstats
path: root/pbx.c
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 /pbx.c
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 'pbx.c')
-rw-r--r--pbx.c28
1 files changed, 12 insertions, 16 deletions
diff --git a/pbx.c b/pbx.c
index 4f10ba675..d2f0c6e5c 100644
--- a/pbx.c
+++ b/pbx.c
@@ -265,25 +265,25 @@ static struct pbx_builtin {
},
{ "BackGround", pbx_builtin_background,
- "Play a file while awaiting extension",
+ "Play an audio file while waiting for digits of an extension to go to.\n",
" Background(filename1[&filename2...][|options[|langoverride][|context]]):\n"
"This application will play the given list of files while waiting for an\n"
"extension to be dialed by the calling channel. To continue waiting for digits\n"
"after this application has finished playing files, the WaitExten application\n"
- "should be used. The 'langoverride' option explicity specifies which language\n"
+ "should be used. The 'langoverride' option explicitly specifies which language\n"
"to attempt to use for the requested sound files. If a 'context' is specified,\n"
"this is the dialplan context that this application will use when exiting to a\n"
"dialed extension."
" If one of the requested sound files does not exist, call processing will be\n"
"terminated.\n"
" Options:\n"
- " s - causes the playback of the message to be skipped\n"
+ " s - Causes the playback of the message to be skipped\n"
" if the channel is not in the 'up' state (i.e. it\n"
- " hasn't been answered yet.) If this happens, the\n"
+ " hasn't been answered yet). If this happens, the\n"
" application will return immediately.\n"
- " n - don't answer the channel before playing the files\n"
- " m - only break if a digit hit matches a one digit\n"
- " extension in the destination context\n"
+ " n - Don't answer the channel before playing the files.\n"
+ " m - Only break if a digit hit matches a one digit\n"
+ " extension in the destination context.\n"
},
{ "Busy", pbx_builtin_busy,
@@ -326,19 +326,15 @@ static struct pbx_builtin {
{ "GotoIfTime", pbx_builtin_gotoiftime,
"Conditional Goto based on the current time",
" GotoIfTime(<times>|<weekdays>|<mdays>|<months>?[[context|]exten|]priority):\n"
- "This application will have the calling channel jump to the speicified location\n"
- "int the dialplan if the current time matches the given time specification.\n"
- "Further information on the time specification can be found in examples\n"
- "illustrating how to do time-based context includes in the dialplan.\n"
+ "This application will have the calling channel jump to the specified location\n"
+ "in the dialplan if the current time matches the given time specification.\n"
},
{ "ExecIfTime", pbx_builtin_execiftime,
"Conditional application execution based on the current time",
" ExecIfTime(<times>|<weekdays>|<mdays>|<months>?appname[|appargs]):\n"
"This application will execute the specified dialplan application, with optional\n"
- "arguments, if the current time matches the given time specification. Further\n"
- "information on the time speicification can be found in examples illustrating\n"
- "how to do time-based context includes in the dialplan.\n"
+ "arguments, if the current time matches the given time specification.\n"
},
{ "Hangup", pbx_builtin_hangup,
@@ -408,8 +404,8 @@ static struct pbx_builtin {
{ "SetAMAFlags", pbx_builtin_setamaflags,
"Set the AMA Flags",
- " SetAMAFlags([flag]): This channel will set the channel's AMA Flags for billing\n"
- "purposes.\n"
+ " SetAMAFlags([flag]): This application will set the channel's AMA Flags for\n"
+ " billing purposes.\n"
},
{ "SetGlobalVar", pbx_builtin_setglobalvar,