diff --git a/src/main/java/org/apache/commons/collections4/queue/CircularFifoQueue.java b/src/main/java/org/apache/commons/collections4/queue/CircularFifoQueue.java index 4c68e4cb6..05cfdaf9c 100644 --- a/src/main/java/org/apache/commons/collections4/queue/CircularFifoQueue.java +++ b/src/main/java/org/apache/commons/collections4/queue/CircularFifoQueue.java @@ -38,7 +38,7 @@ import org.apache.commons.collections4.BoundedCollection; * were added. The iteration order is the same as the removal order. *

* The {@link #add(Object)}, {@link #remove()}, {@link #peek()}, {@link #poll}, - * {@link #offer(Object) operations all perform in constant time. + * {@link #offer(Object)} operations all perform in constant time. * All other operations perform in linear time or worse. *

* This queue prevents null objects from being added.