Update documentation

TRAVIS_JOB_NUMBER=3086.1
TRAVIS_COMMIT_RANGE=fda3aa16a368...b8069dd0c39e
This commit is contained in:
Travis CI (pmd-bot)
2018-11-15 16:25:04 +00:00
parent b8069dd0c3
commit 97869dea68

View File

@ -411,7 +411,7 @@ in a single method makes its behaviour hard to read and change.
Cyclomatic complexity assesses the complexity of a method by counting the number of decision points in a method,
plus one for the method entry. Decision points are places where the control flow jumps to another place in the
program. As such, they include all control flow statements, such as `if`, `while`, `for`, and `case`. For more
details on the calculation, see the documentation of the [Cyclo metric](/pmd_java_metrics_index.html#cyclomatic-complexity-cyclo).
details on the calculation, see the documentation of the [Cyclo metric](pmd_java_metrics_index.html#cyclomatic-complexity-cyclo).
Generally, numbers ranging from 1-4 denote low complexity, 5-7 denote moderate complexity, 8-10 denote
high complexity, and 11+ is very high complexity. By default, this rule reports methods with a complexity >= 10.