[asterisk-commits] elguero: trunk r369974 - in /trunk: ./ funcs/func_math.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Jul 12 09:38:47 CDT 2012
Author: elguero
Date: Thu Jul 12 09:38:44 2012
New Revision: 369974
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=369974
Log:
Correct Documentation For DEC Function
The documentation for DEC in func_math.c was incorrect. Looks like a copy and
paste error.
(Closes issue ASTERISK-20095)
Reported by: Billy Chia
Tested by: Michael L. Young
Patches:
func_math.patch uploaded by Billy Chia (license 6381)
........
Merged revisions 369970 from http://svn.asterisk.org/svn/asterisk/branches/1.8
........
Merged revisions 369971 from http://svn.asterisk.org/svn/asterisk/branches/10
Modified:
trunk/ (props changed)
trunk/funcs/func_math.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-10-merged' - no diff available.
Modified: trunk/funcs/func_math.c
URL: http://svnview.digium.com/svn/asterisk/trunk/funcs/func_math.c?view=diff&rev=369974&r1=369973&r2=369974
==============================================================================
--- trunk/funcs/func_math.c (original)
+++ trunk/funcs/func_math.c Thu Jul 12 09:38:44 2012
@@ -103,8 +103,8 @@
</syntax>
<description>
<para>Decrements the value of a variable, while returning the updated value to the dialplan</para>
- <para>Example: DEC(MyVAR) - Increments MyVar</para>
- <para>Note: DEC(${MyVAR}) - Is wrong, as INC expects the variable name, not its value</para>
+ <para>Example: DEC(MyVAR) - Decrements MyVar</para>
+ <para>Note: DEC(${MyVAR}) - Is wrong, as DEC expects the variable name, not its value</para>
</description>
</function>
***/
More information about the asterisk-commits
mailing list