aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/apache/commons/lang3/function/Objects.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/org/apache/commons/lang3/function/Objects.java')
-rwxr-xr-xsrc/test/java/org/apache/commons/lang3/function/Objects.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/java/org/apache/commons/lang3/function/Objects.java b/src/test/java/org/apache/commons/lang3/function/Objects.java
index b919c7fbb..21e30cd8e 100755
--- a/src/test/java/org/apache/commons/lang3/function/Objects.java
+++ b/src/test/java/org/apache/commons/lang3/function/Objects.java
@@ -29,13 +29,13 @@ import org.apache.commons.lang3.ObjectUtils;
* This class provides some replacements for the corresponding methods in
* {@link java.util.Objects}. The replacements have the advantage, that they are properly
* annotated with {@link Nullable}, and/or {@link Nonnull}, so they let the
- * compiler know, what their respective results are.
+ * compiler know what their respective results are.
*
* The various {@code requireNonNull} methods are particularly handy, when
* dealing with external code, that a) doesn't support the {@link Nonnull}
* annotation, or if you know for other reasons, that an object is non-null.
* Take for example, a {@link java.util.Map map}, that you have filled with
- * non-null values. So, in your opinion, the following should be perfectably
+ * non-null values. So, in your opinion, the following should be perfectly
* valid code:
* <pre>
* final Map&lt;String,Object&gt; map = getMapOfNonNullValues();