From 450f9c748f91a32885e7a8ca2475bb27e6da007f Mon Sep 17 00:00:00 2001 From: Sung Ho Yoon <55358516+syoon2@users.noreply.github.com> Date: Tue, 1 Aug 2023 15:08:16 +0900 Subject: [PATCH] (doc) Fix grammatical error in Javadoc --- .../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; *

* 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. *