doc: Correct xdoc/javadoc for ParameterNameCheck

This commit is contained in:
Andrei Selkin 2015-11-12 23:32:07 +03:00 committed by Roman Ivanov
parent 6ab9f8b898
commit ac8daf291b
2 changed files with 3 additions and 2 deletions

View File

@ -24,7 +24,7 @@ import com.puppycrawl.tools.checkstyle.api.TokenTypes;
/**
* <p>
* Checks that parameter names conform to a format specified
* Checks that method and <code>catch</code> parameter names conform to a format specified
* by the format property. The format is a
* {@link java.util.regex.Pattern regular expression}
* and defaults to

View File

@ -915,7 +915,8 @@ class MyClass {
<section name="ParameterName">
<subsection name="Description">
<p>
Validates identifiers for parameters.
Checks that method and <code>catch</code> parameter names conform to a format specified
by the format property.
</p>
</subsection>