diff options
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/config/DebtProperties.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/config/DebtProperties.java b/sonar-core/src/main/java/org/sonar/core/config/DebtProperties.java index 18ea09998b3..47f11ff107b 100644 --- a/sonar-core/src/main/java/org/sonar/core/config/DebtProperties.java +++ b/sonar-core/src/main/java/org/sonar/core/config/DebtProperties.java @@ -46,8 +46,8 @@ class DebtProperties { PropertyDefinition.builder(CoreProperties.DEVELOPMENT_COST) .defaultValue("" + CoreProperties.DEVELOPMENT_COST_DEF_VALUE) .name("Development cost") - .description("Cost to develop one unit of code. If the unit is a line of code (LOC), and the cost to develop 1 LOC has been estimated at 30 minutes, " + - "then the value of this property would be 30.") + .description("Cost to develop one line of code (LOC). Example: if the cost to develop 1 LOC has been estimated " + + "at 30 minutes, then the value of this property would be 30.") .category(CoreProperties.CATEGORY_TECHNICAL_DEBT) .deprecatedKey("workUnitsBySizePoint") .build(), |