From 24d791aa18b7ed1c61d4b298976e6fafb2d1cd2e Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Thu, 21 Dec 2023 08:22:55 -0500 Subject: [PATCH] Javadoc --- .../org/apache/commons/io/output/BrokenOutputStream.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/io/output/BrokenOutputStream.java b/src/main/java/org/apache/commons/io/output/BrokenOutputStream.java index f676fab592a..eaef8d12a62 100644 --- a/src/main/java/org/apache/commons/io/output/BrokenOutputStream.java +++ b/src/main/java/org/apache/commons/io/output/BrokenOutputStream.java @@ -85,7 +85,7 @@ public BrokenOutputStream(final Supplier exceptionSupplier) { /** * Throws the configured exception. * - * @throws IOException always throws the exception configured in the constructor. + * @throws IOException always throws the exception configured in a constructor. */ @Override public void close() throws IOException { @@ -95,7 +95,7 @@ public void close() throws IOException { /** * Throws the configured exception. * - * @throws IOException always throws the exception configured in the constructor. + * @throws IOException always throws the exception configured in a constructor. */ @Override public void flush() throws IOException { @@ -115,7 +115,7 @@ private RuntimeException rethrow() { * Throws the configured exception. * * @param b ignored. - * @throws IOException always throws the exception configured in the constructor. + * @throws IOException always throws the exception configured in a constructor. */ @Override public void write(final int b) throws IOException {