]> source.dussan.org Git - sonarqube.git/commitdiff
Update some WS description
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Tue, 17 Jun 2014 09:36:24 +0000 (11:36 +0200)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Tue, 17 Jun 2014 09:48:05 +0000 (11:48 +0200)
sonar-server/src/main/java/org/sonar/server/rule/ws/UpdateAction.java

index 0086b9d538b18f7c5df02036ced1fd29697ebf49..77808f4d614942e40813a72a3b1b4c920a926431 100644 (file)
@@ -102,12 +102,12 @@ public class UpdateAction implements RequestHandler {
 
     action
       .createParam(PARAM_NAME)
-      .setDescription("Rule name (Only when updating a custom rule or a manual rule)")
+      .setDescription("Rule name (mandatory for custom rule and manual rule)")
       .setExampleValue("My custom rule");
 
     action
       .createParam(PARAM_DESCRIPTION)
-      .setDescription("Rule description (Only when updating a custom rule or a manual rule)")
+      .setDescription("Rule description (mandatory for custom rule and manual rule)")
       .setExampleValue("Description of my custom rule");
 
     action