Javadoc correction

This commit is contained in:
Rick Giles 2002-12-18 16:18:31 +00:00
parent 3411c89f4c
commit 2d88ca65d2
1 changed files with 2 additions and 2 deletions

View File

@ -47,12 +47,12 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* <pre>
* &lt;module name="NoWhitespaceAfter"/&gt;
* </pre>
* <p> An example of how to configure the check to allow linebreaks after
* <p> An example of how to configure the check to forbid linebreaks after
* a {@link TokenTypes#DOT DOT} token is:
* <pre>
* &lt;module name="NoWhitespaceAfter"&gt;
* &lt;property name="tokens" value="DOT"/&gt;
* &lt;property name="allowLineBreaks" value="true"/&gt;
* &lt;property name="allowLineBreaks" value="false"/&gt;
* &lt;/module&gt;
* </pre>
* @author Rick Giles