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 ff374017b8cebacc6e8ef2f00a6ac8096766ee45 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri May 19 10:39:19 2023 -0400 Javadoc --- .../org/apache/commons/io/input/compatibility/XmlStreamReader.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/java/org/apache/commons/io/input/compatibility/XmlStreamReader.java b/src/test/java/org/apache/commons/io/input/compatibility/XmlStreamReader.java index b599238e..928ac115 100644 --- a/src/test/java/org/apache/commons/io/input/compatibility/XmlStreamReader.java +++ b/src/test/java/org/apache/commons/io/input/compatibility/XmlStreamReader.java @@ -351,7 +351,7 @@ public class XmlStreamReader extends Reader { * relaxed. * @throws IOException thrown if there is a problem reading the stream. * @throws XmlStreamReaderException thrown if the charset encoding could not - * be determined according to the specs. + * be determined according to the specification. */ public XmlStreamReader(final InputStream inputStream, final boolean lenient) throws IOException, XmlStreamReaderException { @@ -419,7 +419,7 @@ public class XmlStreamReader extends Reader { * relaxed. * @throws IOException thrown if there is a problem reading the file. * @throws XmlStreamReaderException thrown if the charset encoding could not - * be determined according to the specs. + * be determined according to the specification. */ public XmlStreamReader(final InputStream inputStream, final String httpContentType, final boolean lenient) throws IOException, XmlStreamReaderException { @@ -458,7 +458,7 @@ public class XmlStreamReader extends Reader { * @param defaultEncoding the default encoding to use * @throws IOException thrown if there is a problem reading the file. * @throws XmlStreamReaderException thrown if the charset encoding could not - * be determined according to the specs. + * be determined according to the specification. */ public XmlStreamReader(final InputStream inputStream, final String httpContentType, final boolean lenient, final String defaultEncoding) throws IOException,