diff --git a/docs/anttask.html b/docs/anttask.html index 6e2b90cf3..6ef1cc568 100644 --- a/docs/anttask.html +++ b/docs/anttask.html @@ -101,8 +101,8 @@ This task is included in the checkstyle distribution.

Nested Elements

This task supports the nested elements -<fileset>, -<classpath>, +<fileset>, +<classpath>, <formatter> and <property>.

diff --git a/docs/config_misc.html b/docs/config_misc.html index a8c222d79..987aa723c 100644 --- a/docs/config_misc.html +++ b/docs/config_misc.html @@ -504,7 +504,7 @@ like 1.

 String a = getParameter("a");
-String b = (a==null || a.length<1) ? null : a.substring(1);
+String b = (a==null || a.length<1) ? null : a.substring(1);
       

Rationale: Some developers find inline conditionals hard to read, diff --git a/docs/config_naming.html b/docs/config_naming.html index 5cefcbf77..3d7249e63 100644 --- a/docs/config_naming.html +++ b/docs/config_naming.html @@ -21,7 +21,7 @@

Each of these naming modules validates identifiers for particular code elements. Valid identifiers for a naming module are specified by its - format property. The value of format is a regular + format property. The value of format is a regular expression for valid identifiers. This is an example of a configuration of the MemberName module to ensure that member identifiers begin with 'm', diff --git a/docs/index.html b/docs/index.html index d66d92dbe..92794256f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -93,7 +93,7 @@

A good example of a report that can be produced using Checkstyle and - Maven can be + Maven can be seen here.

@@ -154,7 +154,7 @@

@@ -166,13 +166,13 @@

diff --git a/docs/property_types.html b/docs/property_types.html index 3e3ded718..cdb42f6ce 100644 --- a/docs/property_types.html +++ b/docs/property_types.html @@ -58,7 +58,7 @@ parsed as a set of comma (',') separated integers that are parsed using the

Regular Expression

This property represents a regular expression. The string representation is -parsed using the excellent Jakarta +parsed using the excellent Jakarta Regexp library.

diff --git a/docs/writingchecks.html b/docs/writingchecks.html index d531eb80d..f75fe3184 100644 --- a/docs/writingchecks.html +++ b/docs/writingchecks.html @@ -211,7 +211,7 @@

Before any visitor method is called, the TreeWalker will call beginTree() to give the Check a chance to do some initialization. Then, when performing the recursive descend from the root to the leaf nodes, the visitToken() @@ -222,7 +222,7 @@ method to signal that the subtree below the node has been processed and the TreeWalker is backtracking from the node. After the root node has been left, the TreeWalker will call finishTree().

@@ -465,7 +465,7 @@

This means that you cannot implement some of the code inspection features that are available in advanced IDEs like IntelliJ IDEA. For + href="http://www.intellij.com/idea/">IntelliJ IDEA. For example you will not be able to implement a Check that finds redundant type casts or unused public methods.

@@ -501,7 +501,7 @@ public void process(File[] files) { - if (files != null && files.length > max) { + if (files != null && files.length > max) { // Build the error list. Here we fire only one error LocalizedMessage[] errors = new LocalizedMessage[1]; @@ -573,5 +573,5 @@
-

Copyright © 2002 Oliver Burn. All rights Reserved.

+