This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit 7e210947d2c8d160305a5a6e4587f84cafdb3176
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Thu Mar 20 14:57:58 2025 +0000

    Improve Javadoc formatting
---
 java/org/apache/jasper/tagplugins/jstl/Util.java | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/java/org/apache/jasper/tagplugins/jstl/Util.java 
b/java/org/apache/jasper/tagplugins/jstl/Util.java
index 8935c6ab32..aeecc01a04 100644
--- a/java/org/apache/jasper/tagplugins/jstl/Util.java
+++ b/java/org/apache/jasper/tagplugins/jstl/Util.java
@@ -187,13 +187,13 @@ public class Util {
     /**
      * Performs the following substring replacements
      * (to facilitate output to XML/HTML pages):
-     *
-     *    &amp; -&gt; &amp;amp;
-     *    &lt; -&gt; &amp;lt;
-     *    &gt; -&gt; &amp;gt;
-     *    " -&gt; &amp;#034;
-     *    ' -&gt; &amp;#039;
-     *
+     * <ul>
+     *    <li>{@code &} -&gt; {@code &amp}</li>
+     *    <li>{@code <} -&gt; {@code &lt;}</li>
+     *    <li>{@code >} -&gt; {@code &gt;}</li>
+     *    <li>{@code "} -&gt; {@code &#034;}</li>
+     *    <li>{@code '} -&gt; {@code &#039;}</li>
+     * </ul>
      * See also OutSupport.writeEscapedXml().
      *
      * taken from org.apache.taglibs.standard.tag.common.core.Util


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to