Fix typos

This commit is contained in:
Gary Gregory 2023-01-15 07:55:27 -05:00
parent 576fd97501
commit e3eaa8599e
3 changed files with 3 additions and 3 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>