Skip to content

Commit 6caa7c3

Browse files
committed
Javadoc
1 parent ffbddaf commit 6caa7c3

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/main/java/org/apache/commons/io/output/AbstractByteArrayOutputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ protected int writeImpl(final InputStream in) throws IOException {
412412
}
413413

414414
/**
415-
* Write a byte to byte array.
415+
* Writes a byte to byte array.
416416
* @param b the byte to write
417417
*/
418418
protected void writeImpl(final int b) {

src/main/java/org/apache/commons/io/output/AppendableOutputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public T getAppendable() {
5555
}
5656

5757
/**
58-
* Write a character to the underlying appendable.
58+
* Writes a character to the underlying appendable.
5959
*
6060
* @param b the character to write
6161
* @throws IOException upon error

src/main/java/org/apache/commons/io/output/WriterOutputStream.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ private void processInput(final boolean endOfInput) throws IOException {
423423
}
424424

425425
/**
426-
* Write bytes from the specified byte array to the stream.
426+
* Writes bytes from the specified byte array to the stream.
427427
*
428428
* @param b the byte array containing the bytes to write
429429
* @throws IOException if an I/O error occurs.
@@ -434,7 +434,7 @@ public void write(final byte[] b) throws IOException {
434434
}
435435

436436
/**
437-
* Write bytes from the specified byte array to the stream.
437+
* Writes bytes from the specified byte array to the stream.
438438
*
439439
* @param b the byte array containing the bytes to write
440440
* @param off the start offset in the byte array
@@ -456,7 +456,7 @@ public void write(final byte[] b, int off, int len) throws IOException {
456456
}
457457

458458
/**
459-
* Write a single byte to the stream.
459+
* Writes a single byte to the stream.
460460
*
461461
* @param b the byte to write
462462
* @throws IOException if an I/O error occurs.

0 commit comments

Comments
 (0)