Correct property override example

Fixes #1721.
This commit is contained in:
Felix W. Dekker
2019-03-15 16:31:49 +01:00
committed by GitHub
parent 946748f429
commit 6bb8f095a2

View File

@ -41,7 +41,9 @@ Properties make it easy to customise the behaviour of a rule directly from the x
```xml
<rule ref="category/java/design.xml/NPathComplexity">
<properties>
<property name="reportLevel">150</property>
<property name="reportLevel">
<value>150</value>
</property>
</properties>
</rule>
```