diff --git a/src/xdocs/config_naming.xml b/src/xdocs/config_naming.xml index 0dbda1e34..9651d4fda 100644 --- a/src/xdocs/config_naming.xml +++ b/src/xdocs/config_naming.xml @@ -1034,6 +1034,15 @@ public boolean equals(Object o) { <property name="ignoreOverridden" value="true"/> </module> +

+ An example of how to configure the check for names that begin with + a lower case letter, followed by letters and digits is: +

+ +<module name="ParameterName"> + <property name="format" value="^[a-z][a-zA-Z0-9]+$"/> +</module> +