From 153f33ea77ca0cb75373abfa10704a5419a08b63 Mon Sep 17 00:00:00 2001 From: Sebastian Bazley Date: Sun, 28 Apr 2013 14:03:13 +0000 Subject: [PATCH] Javadoc syntax error git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1476772 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/commons/collections4/queue/CircularFifoQueue.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.