Fix comment typo
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 7 Oct 2008 19:26:30 +0000 (19:26 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 7 Oct 2008 19:26:30 +0000 (19:26 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@702595 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/jasper/compiler/Parser.java

index 9cc9790..03e58d0 100644 (file)
@@ -288,8 +288,8 @@ class Parser implements TagConstants {
                 ch = tx.charAt(i + 1);
                 if (ch == '\\' || ch == '\"' || ch == '\'' || (ch == '>')) {
                     // \ " and ' are always unescaped regardless of if they are
-                    // or outside of an EL expression. JSP.1.6 takes precedence
-                    // over JSP.1.3.10 (confirmed with EG)
+                    // inside or outside of an EL expression. JSP.1.6 takes
+                    // precedence over JSP.1.3.10 (confirmed with EG).
                     buf.append(ch);
                     i += 2;
                 } else {