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 9373a1828493ae647d47b992aa6b56e70be19502 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sun Jul 25 14:53:32 2021 -0400 Javadoc. --- .../apache/commons/io/output/FileWriterWithEncoding.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/apache/commons/io/output/FileWriterWithEncoding.java b/src/main/java/org/apache/commons/io/output/FileWriterWithEncoding.java index e9f5aa2..c1ff5c6 100644 --- a/src/main/java/org/apache/commons/io/output/FileWriterWithEncoding.java +++ b/src/main/java/org/apache/commons/io/output/FileWriterWithEncoding.java @@ -247,7 +247,7 @@ public class FileWriterWithEncoding extends Writer { } /** - * Write a character. + * Writes a character. * @param idx the character to write * @throws IOException if an I/O error occurs. */ @@ -257,7 +257,7 @@ public class FileWriterWithEncoding extends Writer { } /** - * Write the characters from an array. + * Writes the characters from an array. * @param chr the characters to write * @throws IOException if an I/O error occurs. */ @@ -267,7 +267,7 @@ public class FileWriterWithEncoding extends Writer { } /** - * Write the specified characters from an array. + * Writes the specified characters from an array. * @param chr the characters to write * @param st The start offset * @param end The number of characters to write @@ -279,7 +279,7 @@ public class FileWriterWithEncoding extends Writer { } /** - * Write the characters from a string. + * Writes the characters from a string. * @param str the string to write * @throws IOException if an I/O error occurs. */ @@ -289,7 +289,7 @@ public class FileWriterWithEncoding extends Writer { } /** - * Write the specified characters from a string. + * Writes the specified characters from a string. * @param str the string to write * @param st The start offset * @param end The number of characters to write @@ -301,7 +301,7 @@ public class FileWriterWithEncoding extends Writer { } /** - * Flush the stream. + * Flushes the stream. * @throws IOException if an I/O error occurs. */ @Override @@ -310,7 +310,7 @@ public class FileWriterWithEncoding extends Writer { } /** - * Close the stream. + * Closes the stream. * @throws IOException if an I/O error occurs. */ @Override