You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2011/06/14 22:16:28 UTC

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

Author: sebb
Date: Tue Jun 14 20:16:28 2011
New Revision: 1135775

URL: http://svn.apache.org/viewvc?rev=1135775&view=rev
Log:
Fix up - 42.0L is not a valid Long ...

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=1135775&r1=1135774&r2=1135775&view=diff
==============================================================================
--- commons/proper/jexl/trunk/src/site/xdoc/reference/syntax.xml (original)
+++ commons/proper/jexl/trunk/src/site/xdoc/reference/syntax.xml Tue Jun 14 20:16:28 2011
@@ -138,13 +138,15 @@
           <td>
             1 or more digits from <code>0</code> to <code>9</code>, followed
             by a decimal point and then one or more digits from
-            <code>0</code> to <code>9</code>, eg <code>42.0</code>.
+            <code>0</code> to <code>9</code>,
+            optionally followed by <code>f</code> or <code>F</code>,
+            eg <code>42.0</code> or <code>42.0f</code>.
           </td>
         </tr>
         <tr>
           <td>Long Literals</td>
           <td>1 or more digits from <code>0</code> to <code>9</code> suffixed with <code>l</code> or <code>L</code>
-          , eg <code>42.0l</code>.
+          , eg <code>42l</code>.
           </td>
         </tr>
         <tr>
@@ -153,7 +155,7 @@
             1 or more digits from <code>0</code> to <code>9</code>, followed
             by a decimal point and then one or more digits from
             <code>0</code> to <code>9</code> suffixed with <code>d</code> or <code>D</code>
-            , eg <code>42.0d</code>..
+            , eg <code>42.0d</code>.
           </td>
         </tr>
         <tr>