@@ -247,7 +247,7 @@ private static Writer initWriter(final File file, final Object encoding, final b
247247 }
248248
249249 /**
250- * Write a character.
250+ * Writes a character.
251251 * @param idx the character to write
252252 * @throws IOException if an I/O error occurs.
253253 */
@@ -257,7 +257,7 @@ public void write(final int idx) throws IOException {
257257 }
258258
259259 /**
260- * Write the characters from an array.
260+ * Writes the characters from an array.
261261 * @param chr the characters to write
262262 * @throws IOException if an I/O error occurs.
263263 */
@@ -267,7 +267,7 @@ public void write(final char[] chr) throws IOException {
267267 }
268268
269269 /**
270- * Write the specified characters from an array.
270+ * Writes the specified characters from an array.
271271 * @param chr the characters to write
272272 * @param st The start offset
273273 * @param end The number of characters to write
@@ -279,7 +279,7 @@ public void write(final char[] chr, final int st, final int end) throws IOExcept
279279 }
280280
281281 /**
282- * Write the characters from a string.
282+ * Writes the characters from a string.
283283 * @param str the string to write
284284 * @throws IOException if an I/O error occurs.
285285 */
@@ -289,7 +289,7 @@ public void write(final String str) throws IOException {
289289 }
290290
291291 /**
292- * Write the specified characters from a string.
292+ * Writes the specified characters from a string.
293293 * @param str the string to write
294294 * @param st The start offset
295295 * @param end The number of characters to write
@@ -301,7 +301,7 @@ public void write(final String str, final int st, final int end) throws IOExcept
301301 }
302302
303303 /**
304- * Flush the stream.
304+ * Flushes the stream.
305305 * @throws IOException if an I/O error occurs.
306306 */
307307 @ Override
@@ -310,7 +310,7 @@ public void flush() throws IOException {
310310 }
311311
312312 /**
313- * Close the stream.
313+ * Closes the stream.
314314 * @throws IOException if an I/O error occurs.
315315 */
316316 @ Override
0 commit comments