diff --git a/src/test/java/org/apache/commons/csv/CSVPrinterTest.java b/src/test/java/org/apache/commons/csv/CSVPrinterTest.java index d015312b..d4bff61e 100644 --- a/src/test/java/org/apache/commons/csv/CSVPrinterTest.java +++ b/src/test/java/org/apache/commons/csv/CSVPrinterTest.java @@ -1506,7 +1506,7 @@ public class CSVPrinterTest { * Test to target the use of {@link IOUtils#copy(java.io.Reader, Appendable)} which directly buffers the value from the Reader to the Appendable. * *

- * Requires the format to have no quote or escape character, value to be a {@link Reader Reader} and the output MUST NOT be a + * Requires the format to have no quote or escape character, value to be a {@link Reader Reader} and the output MUST NOT be a * {@link Writer Writer} but some other Appendable. *

* @@ -1527,7 +1527,7 @@ public class CSVPrinterTest { * Test to target the use of {@link IOUtils#copyLarge(java.io.Reader, Writer)} which directly buffers the value from the Reader to the Writer. * *

- * Requires the format to have no quote or escape character, value to be a {@link Reader Reader} and the output MUST be a + * Requires the format to have no quote or escape character, value to be a {@link Reader Reader} and the output MUST be a * {@link Writer Writer}. *

*