aboutsummaryrefslogtreecommitdiffstats
path: root/pbx
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-12 20:47:23 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-12 20:47:23 +0000
commitf4a094cd8a1fe3ca3d9972f169976101a3a8606d (patch)
tree6a2aa4f285885748a9f3b914f4ce16422ce5974b /pbx
parentb8657d445d0a9c860a7970c3615fb57115122286 (diff)
fix some more typos and clarity issues
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5643 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx')
-rwxr-xr-xpbx/pbx_config.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/pbx/pbx_config.c b/pbx/pbx_config.c
index c371246a5..b2ee6519b 100755
--- a/pbx/pbx_config.c
+++ b/pbx/pbx_config.c
@@ -52,17 +52,18 @@ static struct ast_context *local_contexts = NULL;
* Help for commands provided by this module ...
*/
static char context_dont_include_help[] =
-"Usage: dont include context in include\n"
-" Remove include from context.\n";
+"Usage: dont include <context> in <context>\n"
+" Remove an included context from another context.\n";
static char context_remove_extension_help[] =
"Usage: remove extension exten@context [priority]\n"
-" Remove whole extension from context. If priority is set, we are only\n"
-" removing extension with given priority.\n";
+" Remove an extension from a given context. If a priority\n"
+" is given, only that specific priority from the given extension\n"
+" will be removed.\n";
static char context_add_include_help[] =
-"Usage: include context in context\n"
-" Include context in other context.\n";
+"Usage: include <context> in <context>\n"
+" Include a context in another context.\n";
static char save_dialplan_help[] =
"Usage: save dialplan [/path/to/extension/file]\n"
@@ -89,7 +90,7 @@ static char context_add_ignorepat_help[] =
static char context_remove_ignorepat_help[] =
"Usage: remove ignorepat <pattern> from <context>\n"
-" This command remove ignore pattern from context <context>\n"
+" This command removes an ignore pattern from context <context>\n"
"\n"
"Example: remove ignorepat _3XX from local\n";