diff --git a/src/main/java/org/apache/commons/lang3/ObjectUtils.java b/src/main/java/org/apache/commons/lang3/ObjectUtils.java
index 8f1478f66..d328105e0 100644
--- a/src/main/java/org/apache/commons/lang3/ObjectUtils.java
+++ b/src/main/java/org/apache/commons/lang3/ObjectUtils.java
@@ -129,9 +129,12 @@ public static Checks if any value in the array is not {@code null}.
+ * Checks if any value in the given array is not {@code null}.
+ *
+ *
* If all the values are {@code null} or the array is {@code null}
- * or empty then {@code false} is returned. Otherwise {@code true} is returned.
* ObjectUtils.anyNotNull(*) = true @@ -153,11 +156,14 @@ public static boolean anyNotNull(final Object... values) { } /** - *Checks if all values in the array are not {@code null}s. - * If any value is {@code null} or the array is {@code null} - * then {@code false} is returned. - * If all elements in array are not {@code null} or the array is empty (contains no elements) - * {@code true} is returned.
+ * Checks if all values in the array are not {@code nulls}. + * + *+ * If any value is {@code null} or the array is {@code null} then + * {@code false} is returned. If all elements in array are not + * {@code null} or the array is empty (contains no elements) {@code true} + * is returned. + *
* ** ObjectUtils.allNotNull(*) = true