Minor correction to the JavaDoc for AttributeParser class
authorkkolinko <kkolinko@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 1 Feb 2010 09:43:10 +0000 (09:43 +0000)
committerkkolinko <kkolinko@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 1 Feb 2010 09:43:10 +0000 (09:43 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@905226 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/jasper/compiler/AttributeParser.java

index 87a63f8..629be7b 100644 (file)
@@ -24,7 +24,7 @@ package org.apache.jasper.compiler;
  * "\${1+1}". After unquoting, both appear as "${1+1}" but the first should
  * evaluate to "2" and the second to "${1+1}". Literal \, $ and # need special
  * treatment to ensure there is no ambiguity. The JSP attribute unquoting
- * covers \\, \", \', \$, \#, %\>, <\%, &apos; and &quot;
+ * covers \\, \", \', \$, \#, %\&gt;, &lt;\%, &amp;apos; and &amp;quot;
  */
 public class AttributeParser {