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-csv.git
The following commit(s) were added to refs/heads/master by this push: new 618a20f7 Javadoc 618a20f7 is described below commit 618a20f777204db181e4667695b0183ce6b9172a Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jul 21 11:27:47 2024 -0400 Javadoc Use HTML 'em' tag instead of 'i' tag --- src/test/java/org/apache/commons/csv/CSVPrinterTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. * * <p> - * Requires the format to have no quote or escape character, value to be a {@link Reader Reader} and the output <i>MUST NOT</i> be a + * Requires the format to have no quote or escape character, value to be a {@link Reader Reader} and the output <em>MUST NOT</em> be a * {@link Writer Writer} but some other Appendable. * </p> * @@ -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. * * <p> - * Requires the format to have no quote or escape character, value to be a {@link Reader Reader} and the output <i>MUST</i> be a + * Requires the format to have no quote or escape character, value to be a {@link Reader Reader} and the output <em>MUST</em> be a * {@link Writer Writer}. * </p> *