From 5c57d34d16ec45fa359a47f143ea07d833182d7c Mon Sep 17 00:00:00 2001 From: Jamie Doornbos Date: Mon, 17 Nov 2014 12:33:57 -0800 Subject: [PATCH] Minor javadoc fixes. --- src/main/java/com/samskivert/servlet/util/HTMLUtil.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/samskivert/servlet/util/HTMLUtil.java b/src/main/java/com/samskivert/servlet/util/HTMLUtil.java index 2fec8925..19569b38 100644 --- a/src/main/java/com/samskivert/servlet/util/HTMLUtil.java +++ b/src/main/java/com/samskivert/servlet/util/HTMLUtil.java @@ -17,8 +17,8 @@ import com.samskivert.util.StringUtil; public class HTMLUtil { /** - * Converts instances of {@code<, >, & and "} into their - * entified equivalents: {@code<, >, & and "}. + * Converts instances of {@code <, >, & and "} into their + * entified equivalents: {@code <, >, & and "}. * These characters are mentioned in the HTML spec as being common * candidates for entification. * @@ -43,7 +43,7 @@ public class HTMLUtil } /** - * Inserts a @{code

} tag between every two consecutive newlines. + * Inserts a {@code

} tag between every two consecutive newlines. */ public static String makeParagraphs (String text) {