From 319e6977d177cd1973f8c4ba329727bbdb422025 Mon Sep 17 00:00:00 2001 From: oowekyala Date: Wed, 9 Aug 2017 14:59:10 +0200 Subject: [PATCH] Fix spacing problem in descriptions --- pmd-java/src/main/resources/rulesets/java/metrics.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pmd-java/src/main/resources/rulesets/java/metrics.xml b/pmd-java/src/main/resources/rulesets/java/metrics.xml index ec4a95344b..deb056a968 100644 --- a/pmd-java/src/main/resources/rulesets/java/metrics.xml +++ b/pmd-java/src/main/resources/rulesets/java/metrics.xml @@ -113,8 +113,8 @@ class Foo { // +1, total Ncss = 12 The NPath complexity of a method is the number of acyclic execution paths through that method. While cyclomatic complexity counts the number of decision points in a method, NPath counts the number of - full paths from the beginning to the end oftheblock of the method. That metric grows exponentially, as - it multiplies the complexity of statements inthe same block. For more details on the calculation, see the + full paths from the beginning to the end of the block of the method. That metric grows exponentially, as + it multiplies the complexity of statements in the same block. For more details on the calculation, see the documentation of the [NPath metric](/pmd_java_metrics_index.html#npath-complexity-npath). A threshold of 200 is generally considered the point where measures should be taken to reduce