Update docs

This commit is contained in:
Andreas Dangel
2017-08-13 12:10:01 +02:00
parent c38961720d
commit 908e8edc13
2 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
entries:
- title: sidebar
product: PMD Project
product: PMD
version: "!PMD_VERSION!"
folders:
@ -105,7 +105,7 @@ entries:
- title: JSP Support
url: /pmd_languages_jsp.html
output: web, pdf
- title: Index of Java code metrics
- title: Java code metrics
url: /pmd_java_metrics_index.html
output: web, pdf
- title: Developer Documentation

View File

@ -15,7 +15,7 @@
class="net.sourceforge.pmd.lang.java.metrics.rule.CyclomaticComplexityRule"
metrics="true"
externalInfoUrl="${pmd.website.baseurl}/rules/java/codesize.html#CyclomaticComplexity">
<description>
<description><![CDATA[
The complexity of methods directly affects maintenance costs and readability. Concentrating too much decisional logic
in a single method makes its behaviour hard to read and change.
@ -28,7 +28,7 @@
high complexity, and 11+ is very high complexity.
Reported methods should be broken down into several smaller methods. Reported classes should probably be broken down
into subcomponents.
into subcomponents.]]>
</description>
<priority>3</priority>
<example>