You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/01/15 12:55:32 UTC

[commons-collections] branch master updated: Fix typos

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-collections.git


The following commit(s) were added to refs/heads/master by this push:
     new e3eaa8599 Fix typos
e3eaa8599 is described below

commit e3eaa8599e49253d9af6b6d81d6470086827612d
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Jan 15 07:55:27 2023 -0500

    Fix typos
---
 .../apache/commons/collections4/bloomfilter/EnhancedDoubleHasher.java   | 2 +-
 .../org/apache/commons/collections4/functors/ComparatorPredicate.java   | 2 +-
 .../org/apache/commons/collections4/bloomfilter/IncrementingHasher.java | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/collections4/bloomfilter/EnhancedDoubleHasher.java b/src/main/java/org/apache/commons/collections4/bloomfilter/EnhancedDoubleHasher.java
index 056c16379..7b84730db 100644
--- a/src/main/java/org/apache/commons/collections4/bloomfilter/EnhancedDoubleHasher.java
+++ b/src/main/java/org/apache/commons/collections4/bloomfilter/EnhancedDoubleHasher.java
@@ -20,7 +20,7 @@ import java.util.Objects;
 import java.util.function.IntPredicate;
 
 /**
- * A Hasher that implements combinatorial hashing as as described by
+ * A Hasher that implements combinatorial hashing as described by
  * <a href="https://www.eecs.harvard.edu/~michaelm/postscripts/tr-02-05.pdf">Krisch and Mitzenmacher</a> using the enhanced double hashing technique
  * described in the wikipedia article  <a href="https://en.wikipedia.org/wiki/Double_hashing#Enhanced_double_hashing">Double Hashing</a>.
  * <p>
diff --git a/src/main/java/org/apache/commons/collections4/functors/ComparatorPredicate.java b/src/main/java/org/apache/commons/collections4/functors/ComparatorPredicate.java
index 5a50c6bed..f584492fa 100644
--- a/src/main/java/org/apache/commons/collections4/functors/ComparatorPredicate.java
+++ b/src/main/java/org/apache/commons/collections4/functors/ComparatorPredicate.java
@@ -41,7 +41,7 @@ import org.apache.commons.collections4.Predicate;
  * };
  * </pre>
  *
- * <p>Using the declared variables, the {@code ComparatorPredicate} can be used used in the
+ * <p>Using the declared variables, the {@code ComparatorPredicate} can be used in the
  * following way:</p>
  *
  * <pre>
diff --git a/src/test/java/org/apache/commons/collections4/bloomfilter/IncrementingHasher.java b/src/test/java/org/apache/commons/collections4/bloomfilter/IncrementingHasher.java
index 2349f1b1d..94b77c5d5 100644
--- a/src/test/java/org/apache/commons/collections4/bloomfilter/IncrementingHasher.java
+++ b/src/test/java/org/apache/commons/collections4/bloomfilter/IncrementingHasher.java
@@ -20,7 +20,7 @@ import java.util.Objects;
 import java.util.function.IntPredicate;
 
 /**
- * A Hasher that implements simple combinatorial hashing as as described by
+ * A Hasher that implements simple combinatorial hashing as described by
  * <a href="https://www.eecs.harvard.edu/~michaelm/postscripts/tr-02-05.pdf">Krisch and Mitzenmacher</a>.
  *
  * <p>To be used for testing only.</p>