]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-6859 update property sonar.technicalDebt.developmentCost desc.
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>
Tue, 22 Sep 2015 17:27:45 +0000 (19:27 +0200)
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>
Fri, 25 Sep 2015 13:03:00 +0000 (15:03 +0200)
sonar-core/src/main/java/org/sonar/core/config/DebtProperties.java

index 18ea09998b3eb8375d54da820a632851795a70e3..47f11ff107bca26a99814bf93db936d602c225e9 100644 (file)
@@ -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(),