This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-functor.git
The following commit(s) were added to refs/heads/master by this push:
new c12e0dd Javadoc typos
c12e0dd is described below
commit c12e0dd9e1e1da9e921834ba12b1cfa356c0e819
Author: Gary Gregory <[email protected]>
AuthorDate: Fri May 19 08:45:42 2023 -0400
Javadoc typos
---
core/src/main/java/org/apache/commons/functor/core/IsInstance.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/core/src/main/java/org/apache/commons/functor/core/IsInstance.java
b/core/src/main/java/org/apache/commons/functor/core/IsInstance.java
index 7a4cf0b..4e0b581 100644
--- a/core/src/main/java/org/apache/commons/functor/core/IsInstance.java
+++ b/core/src/main/java/org/apache/commons/functor/core/IsInstance.java
@@ -34,11 +34,11 @@ public final class IsInstance<T> implements
BinaryPredicate<T, Class<?>> {
*/
public static final IsInstance<Object> INSTANCE =
IsInstance.<Object>instance();
/**
- * The non zero number used to shift the initial hashcode.
+ * The non zero number used to shift the initial hash code.
*/
private static final int NONZERO_SHIFT_NUMBER = 4;
/**
- * The non zero number used to bitwise or the hashcode.
+ * The non zero number used to bitwise or the hash code.
*/
private static final int NONZERO_BITWISE_NUMBER = 37;