doc: Correct regexp in configuration example for ParameterNameCheck

This commit is contained in:
Andrei Selkin 2015-12-09 22:56:27 +03:00
parent 75bbb44180
commit 272740a132
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
* </p>
* <pre>
* &lt;module name="ParameterName"&gt;
* &lt;property name="format" value="^^[a-z](_?[a-zA-Z0-9]+)*$"/&gt;
* &lt;property name="format" value="^[a-z][_a-zA-Z0-9]+$"/&gt;
* &lt;/module&gt;
* </pre>
* <p>