You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/04/28 16:03:13 UTC

svn commit: r1476772 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/queue/CircularFifoQueue.java

Author: sebb
Date: Sun Apr 28 14:03:13 2013
New Revision: 1476772

URL: http://svn.apache.org/r1476772
Log:
Javadoc syntax error

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/queue/CircularFifoQueue.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/queue/CircularFifoQueue.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/queue/CircularFifoQueue.java?rev=1476772&r1=1476771&r2=1476772&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/queue/CircularFifoQueue.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/queue/CircularFifoQueue.java Sun Apr 28 14:03:13 2013
@@ -38,7 +38,7 @@ import org.apache.commons.collections4.B
  * were added.  The iteration order is the same as the removal order.
  * <p>
  * 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.
  * <p>
  * This queue prevents null objects from being added.