You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2014/03/03 22:14:31 UTC

svn commit: r1573750 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/iterators/PushbackIterator.java

Author: tn
Date: Mon Mar  3 21:14:31 2014
New Revision: 1573750

URL: http://svn.apache.org/r1573750
Log:
Fix typo.

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/iterators/PushbackIterator.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/iterators/PushbackIterator.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/iterators/PushbackIterator.java?rev=1573750&r1=1573749&r2=1573750&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/iterators/PushbackIterator.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/iterators/PushbackIterator.java Mon Mar  3 21:14:31 2014
@@ -46,7 +46,7 @@ public class PushbackIterator<E> impleme
     /**
      * Decorates the specified iterator to support one-element lookahead.
      * <p>
-     * If the iterator is already a {@link PeekingIterator} it is returned directly.
+     * If the iterator is already a {@link PushbackIterator} it is returned directly.
      *
      * @param <E>  the element type
      * @param iterator  the iterator to decorate