This is an automated email from the ASF dual-hosted git repository. sebb 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 450f9c748 (doc) Fix grammatical error in Javadoc new 14215e5bd Merge pull request #410 from syoon2/javadoc-grammar 450f9c748 is described below commit 450f9c748f91a32885e7a8ca2475bb27e6da007f Author: Sung Ho Yoon <55358516+syo...@users.noreply.github.com> AuthorDate: Tue Aug 1 15:08:16 2023 +0900 (doc) Fix grammatical error in Javadoc --- .../org/apache/commons/collections4/queue/AbstractQueueDecorator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/collections4/queue/AbstractQueueDecorator.java b/src/main/java/org/apache/commons/collections4/queue/AbstractQueueDecorator.java index ee012d47c..1d7068878 100644 --- a/src/main/java/org/apache/commons/collections4/queue/AbstractQueueDecorator.java +++ b/src/main/java/org/apache/commons/collections4/queue/AbstractQueueDecorator.java @@ -28,7 +28,7 @@ import org.apache.commons.collections4.collection.AbstractCollectionDecorator; * <p> * This implementation does not forward the hashCode and equals methods through * to the backing object, but relies on Object's implementation. This is - * necessary as some Queue implementations, e.g. LinkedList, have custom a + * necessary as some Queue implementations, e.g. LinkedList, have a custom * equals implementation for which symmetry can not be preserved. * See class javadoc of AbstractCollectionDecorator for more information. * </p>