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 2013/02/28 15:24:08 UTC

svn commit: r1451209 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/iterators/IteratorChain.java

Author: tn
Date: Thu Feb 28 14:24:07 2013
New Revision: 1451209

URL: http://svn.apache.org/r1451209
Log:
Javadoc fixes.

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

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/iterators/IteratorChain.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/iterators/IteratorChain.java?rev=1451209&r1=1451208&r2=1451209&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/iterators/IteratorChain.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections/iterators/IteratorChain.java Thu Feb 28 14:24:07 2013
@@ -26,7 +26,7 @@ import org.apache.commons.collections.li
 /**
  * An IteratorChain is an Iterator that wraps a number of Iterators.
  * <p>
- * This class makes multiple iterators look like one to the caller When any
+ * This class makes multiple iterators look like one to the caller. When any
  * method from the Iterator interface is called, the IteratorChain will delegate
  * to a single underlying Iterator. The IteratorChain will invoke the Iterators
  * in sequence until all Iterators are exhausted.
@@ -35,10 +35,9 @@ import org.apache.commons.collections.li
  * efficient (and convenient) than reading out the contents of each Iterator
  * into a List and creating a new Iterator.
  * <p>
- * Calling a method that adds new Iterator<i>after a method in the Iterator
- * interface has been called</i> will result in an
- * UnsupportedOperationException. Subclasses should <i>take care</i> to not
- * alter the underlying List of Iterators.
+ * Calling a method that adds new Iterator <i>after a method in the Iterator
+ * interface has been called</i> will result in an UnsupportedOperationException.
+ * Subclasses should <i>take care</i> to not alter the underlying List of Iterators.
  * <p>
  * NOTE: As from version 3.0, the IteratorChain may contain no iterators. In
  * this case the class will function as an empty iterator.