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 2023/03/02 17:31:29 UTC

[commons-lang] branch master updated: (doc) fix typo in comment

This is an automated email from the ASF dual-hosted git repository.

kinow pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 2986222b8 (doc) fix typo in comment
2986222b8 is described below

commit 2986222b8c3ce04ffe7380cde78b40c91a2df3d1
Author: Julian Blaskiewicz <10...@users.noreply.github.com>
AuthorDate: Thu Mar 2 14:33:54 2023 +0000

    (doc) fix typo in comment
---
 src/main/java/org/apache/commons/lang3/EnumUtils.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/EnumUtils.java b/src/main/java/org/apache/commons/lang3/EnumUtils.java
index f5e0055e6..1e171bb0c 100644
--- a/src/main/java/org/apache/commons/lang3/EnumUtils.java
+++ b/src/main/java/org/apache/commons/lang3/EnumUtils.java
@@ -346,7 +346,7 @@ public class EnumUtils {
     /**
      * Checks if the specified name is a valid enum for the class.
      *
-     * <p>This method differs from {@link Enum#valueOf} in that checks if the name is
+     * <p>This method differs from {@link Enum#valueOf} in that it checks if the name is
      * a valid enum without needing to catch the exception.</p>
      *
      * @param <E> the type of the enumeration
@@ -361,7 +361,7 @@ public class EnumUtils {
     /**
      * Checks if the specified name is a valid enum for the class.
      *
-     * <p>This method differs from {@link Enum#valueOf} in that checks if the name is
+     * <p>This method differs from {@link Enum#valueOf} in that it checks if the name is
      * a valid enum without needing to catch the exception
      * and performs case insensitive matching of the name.</p>
      *