summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2007-08-24 19:50:16 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2007-08-24 19:50:16 +0000
commitf8c93488d509678aedb6b6fbefe9737e7050793c (patch)
tree8dcfe673b084eacc0abe0bf839c91afe306cd713
parent9931947a6e6d018f84065ca74f3de6a800bd3320 (diff)
Fix documentation for Set (closes issue #10549)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@80817 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--main/pbx.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/main/pbx.c b/main/pbx.c
index 259385428..c43faa585 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -476,13 +476,13 @@ static struct pbx_builtin {
{ "Set", pbx_builtin_setvar,
"Set channel variable(s) or function value(s)",
- " Set(name1=value1)\n"
+ " Set(name=value)\n"
"This function can be used to set the value of channel variables or dialplan\n"
- "functions. It will accept up to 24 name/value pairs. When setting variables,\n"
- "if the variable name is prefixed with _, the variable will be inherited into\n"
- "channels created from the current channel. If the variable name is prefixed\n"
- "with __, the variable will be inherited into channels created from the current\n"
- "channel and all children channels.\n"
+ "functions. When setting variables, if the variable name is prefixed with _,\n"
+ "the variable will be inherited into channels created from the current\n"
+ "channel. If the variable name is prefixed with __, the variable will be\n"
+ "inherited into channels created from the current channel and all children\n"
+ "channels.\n"
},
{ "SetAMAFlags", pbx_builtin_setamaflags,