This commit is contained in:
Gary Gregory 2023-12-14 10:25:14 -05:00
parent 8e0bc678ad
commit 908a79dc8c
2 changed files with 3 additions and 3 deletions

View File

@ -91,10 +91,10 @@ public class IteratorIterable<E> implements Iterable<E> {
};
}
/** the iterator being adapted into an iterable. */
/** The iterator being adapted into an iterable. */
private final Iterator<? extends E> iterator;
/** the iterator parameterized as the {@link #iterator()} return type. */
/** The iterator parameterized as the {@link #iterator()} return type. */
private final Iterator<E> typeSafeIterator;
/**

View File

@ -34,7 +34,7 @@ import org.w3c.dom.NodeList;
*/
public class NodeListIterator implements Iterator<Node> {
/** the original NodeList instance */
/** The original NodeList instance */
private final NodeList nodeList;
/** The current iterator index */
private int index;