You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ki...@apache.org on 2017/09/06 04:07:55 UTC

svn commit: r1807436 - /commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java

Author: kinow
Date: Wed Sep  6 04:07:55 2017
New Revision: 1807436

URL: http://svn.apache.org/viewvc?rev=1807436&view=rev
Log:
Fix typos in Javadoc

Modified:
    commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java

Modified: commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java
URL: http://svn.apache.org/viewvc/commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java?rev=1807436&r1=1807435&r2=1807436&view=diff
==============================================================================
--- commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java (original)
+++ commons/proper/jexl/trunk/src/main/java/org/apache/commons/jexl3/JexlArithmetic.java Wed Sep  6 04:07:55 2017
@@ -912,10 +912,10 @@ public class JexlArithmetic {
     }
 
     /**
-     * Check for emptyness of various types: Number, Collection, Array, Map, String.
+     * Check for emptiness of various types: Number, Collection, Array, Map, String.
      *
-     * @param object the object to check the emptyness of
-     * @return the boolean or null of there is no arithmetic solution
+     * @param object the object to check the emptiness of
+     * @return the boolean or null if there is no arithmetic solution
      */
     public Boolean isEmpty(Object object) {
         if (object instanceof Number) {