You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mc...@apache.org on 2011/11/07 10:34:56 UTC

svn commit: r1198673 - /commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlRuntime.java

Author: mcucchiara
Date: Mon Nov  7 09:34:55 2011
New Revision: 1198673

URL: http://svn.apache.org/viewvc?rev=1198673&view=rev
Log:
Correct typo

Modified:
    commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlRuntime.java

Modified: commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlRuntime.java
URL: http://svn.apache.org/viewvc/commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlRuntime.java?rev=1198673&r1=1198672&r2=1198673&view=diff
==============================================================================
--- commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlRuntime.java (original)
+++ commons/proper/ognl/trunk/src/main/java/org/apache/commons/ognl/OgnlRuntime.java Mon Nov  7 09:34:55 2011
@@ -1750,7 +1750,7 @@ public class OgnlRuntime
      * @param method The method to check.
      * @return True if the method should be callable, false otherwise.
      */
-    //TODO: the method was intented as private, so it'd need to move in a util class
+    //TODO: the method was intended as private, so it'd need to move in a util class
     public static boolean isMethodCallable( Method method )
     {
         return !( method.isSynthetic() || Modifier.isVolatile( method.getModifiers() ) );