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-pool.git
The following commit(s) were added to refs/heads/master by this push: new 9ab142c7 Javadoc typos 9ab142c7 is described below commit 9ab142c73f1e4389869049e4b5d305581f347b23 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri May 19 09:00:07 2023 -0400 Javadoc typos --- .../org/apache/commons/pool2/impl/TestGenericKeyedObjectPool.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/pool2/impl/TestGenericKeyedObjectPool.java b/src/test/java/org/apache/commons/pool2/impl/TestGenericKeyedObjectPool.java index 452636b6..9358b64f 100644 --- a/src/test/java/org/apache/commons/pool2/impl/TestGenericKeyedObjectPool.java +++ b/src/test/java/org/apache/commons/pool2/impl/TestGenericKeyedObjectPool.java @@ -99,7 +99,7 @@ public class TestGenericKeyedObjectPool extends TestKeyedObjectPool { /** * Factory that creates HashSets. Note that this means * 0) All instances are initially equal (not discernible by equals) - * 1) Instances are mutable and mutation can cause change in identity / hashcode. + * 1) Instances are mutable and mutation can cause change in identity / hash code. */ private static final class HashSetFactory extends BaseKeyedPooledObjectFactory<String, HashSet<String>, RuntimeException> { @@ -2383,7 +2383,7 @@ public class TestGenericKeyedObjectPool extends TestKeyedObjectPool { /** * Verifies that when a borrowed object is mutated in a way that does not - * preserve equality and hashcode, the pool can recognized it on return. + * preserve equality and hash code, the pool can recognized it on return. * * JIRA: POOL-284 */