diff --git a/config/checkstyle_checks.xml b/config/checkstyle_checks.xml
index 1d84d9ec7..f19473933 100644
--- a/config/checkstyle_checks.xml
+++ b/config/checkstyle_checks.xml
@@ -258,7 +258,9 @@
- * A check for 'TODO' comments. To check for other patterns in Java comments, set + * A check for 'TODO:' comments. To check for other patterns in Java comments, set * property format. *
*@@ -40,12 +40,12 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes; * *
* An example of how to configure the check for comments that contain
- * WARNING is:
+ * TODO or FIXMEis:
*
* <module name="TodoComment"> - * <property name="format" value="WARNING"/> + * <property name="format" value="(TODO)|(FIXME)"/> * </module> ** @author Oliver Burn diff --git a/src/xdocs/config_misc.xml b/src/xdocs/config_misc.xml index bab5240c8..1eb316866 100755 --- a/src/xdocs/config_misc.xml +++ b/src/xdocs/config_misc.xml @@ -154,11 +154,11 @@
- To configure the check for comments that contain WARNING:
+ To configure the check for comments that contain TODO and FIXME: