From d7e2aa2504458c644466d99a6d7731518af34ade Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Fri, 28 Mar 2014 10:05:06 +0000 Subject: [PATCH] Fix typos git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1582669 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/lang3/ClassUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/lang3/ClassUtils.java b/src/main/java/org/apache/commons/lang3/ClassUtils.java index e59465bc4..1c6c70c58 100644 --- a/src/main/java/org/apache/commons/lang3/ClassUtils.java +++ b/src/main/java/org/apache/commons/lang3/ClassUtils.java @@ -916,7 +916,7 @@ public class ClassUtils { * @throws NullPointerException if the class is null * @throws SecurityException if a security violation occurred * @throws NoSuchMethodException if the method is not found in the given class - * or if the metothod doen't conform with the requirements + * or if the method doesn't conform with the requirements */ public static Method getPublicMethod(final Class cls, final String methodName, final Class... parameterTypes) throws SecurityException, NoSuchMethodException {