This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-io.git
commit be4967e982e88c9236199528cfa50bdca1fe30c6 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Oct 10 21:21:51 2023 -0400 Javadoc --- src/main/java/org/apache/commons/io/StreamIterator.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/io/StreamIterator.java b/src/main/java/org/apache/commons/io/StreamIterator.java index cd09d828..23465657 100644 --- a/src/main/java/org/apache/commons/io/StreamIterator.java +++ b/src/main/java/org/apache/commons/io/StreamIterator.java @@ -36,7 +36,9 @@ public final class StreamIterator<E> implements Iterator<E>, AutoCloseable { /** * Wraps and presents a stream as a closable resource that automatically closes itself when reaching the end of stream. - * <h4>Warning</h4> + * <p> + * <b>Warning</b> + * </p> * <p> * In order to close the stream, the call site MUST either close the stream it allocated OR call this iterator until the end. * </p>