You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by eb...@apache.org on 2017/04/04 14:39:35 UTC

svn commit: r1790129 - /commons/proper/jexl/trunk/src/site/xdoc/reference/syntax.xml

Author: ebourg
Date: Tue Apr  4 14:39:35 2017
New Revision: 1790129

URL: http://svn.apache.org/viewvc?rev=1790129&view=rev
Log:
Fixed a typo in the syntax guide


Modified:
    commons/proper/jexl/trunk/src/site/xdoc/reference/syntax.xml

Modified: commons/proper/jexl/trunk/src/site/xdoc/reference/syntax.xml
URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/site/xdoc/reference/syntax.xml?rev=1790129&r1=1790128&r2=1790129&view=diff
==============================================================================
--- commons/proper/jexl/trunk/src/site/xdoc/reference/syntax.xml (original)
+++ commons/proper/jexl/trunk/src/site/xdoc/reference/syntax.xml Tue Apr  4 14:39:35 2017
@@ -177,7 +177,7 @@
                         Annotations in JEXL are 'meta-statements'; they allow to wrap the execution of the JEXL statement in a user provided
                         caller; typical example would be: <source>@synchronized(x) x.someMethod();</source>
                         <p>
-                            Annotations may be declared with zero or more paramaters;
+                            Annotations may be declared with zero or more parameters;
                             <source>@lenient x.someMethod();</source>
                             <source>@synchronized(x) x.someMethod();</source>
                             <source>@parallel(pool, 8) x.someMethod();</source>