Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Dec 14, 2023
1 parent 8e0bc67 commit 908a79d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public void remove() {
};
}

/** 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;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*/
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;
Expand Down

0 comments on commit 908a79d

Please sign in to comment.