diff --git a/pmd-jsp/etc/grammar/JspParser.jjt b/pmd-jsp/etc/grammar/JspParser.jjt index d4022677d4..13863d8247 100644 --- a/pmd-jsp/etc/grammar/JspParser.jjt +++ b/pmd-jsp/etc/grammar/JspParser.jjt @@ -420,7 +420,7 @@ void JspComment() : /** * This production groups all characters between two tags, where - * tag is an xml-tag "<...>" or a jsp-page-tag "<%...%>" or CDATA "". + * tag is an xml-tag "<...>" or a jsp-page-tag "<%...%>" or CDATA "<![CDATA[...]]>". * Text consists of unparsed text and/or Expression Language expressions. */ void Text() : diff --git a/pmd-jsp/src/main/java/net/sourceforge/pmd/lang/jsp/rule/basic/NoInlineStyleInformationRule.java b/pmd-jsp/src/main/java/net/sourceforge/pmd/lang/jsp/rule/basic/NoInlineStyleInformationRule.java index 1cd6b77fbc..de71e01ef5 100644 --- a/pmd-jsp/src/main/java/net/sourceforge/pmd/lang/jsp/rule/basic/NoInlineStyleInformationRule.java +++ b/pmd-jsp/src/main/java/net/sourceforge/pmd/lang/jsp/rule/basic/NoInlineStyleInformationRule.java @@ -12,7 +12,7 @@ import net.sourceforge.pmd.lang.jsp.rule.AbstractJspRule; import net.sourceforge.pmd.util.CollectionUtil; /** - * This rule checks that no "style" elements (like , , ...) are used, + * This rule checks that no "style" elements (like <B>, <FONT>, ...) are used, * and that no "style" attributes (like "font", "size", "align") are used. * * @author pieter_van_raemdonck