fix typos

This commit is contained in:
Oliver Burn 2001-10-31 13:16:47 +00:00
parent 403a3f70a3
commit f8a69b0780
2 changed files with 3 additions and 3 deletions

View File

@ -151,11 +151,11 @@ This task is included in the checkstyle distribution.</p>
<p><b>Run checkstyle on a set of Java files and disable pattern matching</b></p>
<pre>
&lt;checkstyle allowTabs=&quot;yes&quot;&gt;
&lt;checkstyle allowTabs=&quot;yes&quot;
paramPattern=&quot;.&quot;
constPattern=&quot;.&quot;
staticPattern=&quot;.&quot;
memberPattern=&quot;.&quot;
memberPattern=&quot;.&quot;&gt;
&lt;fileset dir=&quot;src/checkstyle&quot; includes=&quot;**/*.java&quot;/&gt;
&lt;/checkstyle&gt;
</pre>

View File

@ -259,7 +259,7 @@ public class CheckStyleTask
c = new Checker(mConfig, System.out);
AuditListener[] listeners = getListeners();
for (int i = 0; i < listeners.length; i++) {
c.addListener( listeners[i] );
c.addListener(listeners[i]);
}
final String[] files = scanFileSets();
numErrs = c.process(files);