diff options
author | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2016-08-11 10:08:41 +0200 |
---|---|---|
committer | Teryk Bellahsene <teryk.bellahsene@sonarsource.com> | 2016-08-11 11:35:09 +0200 |
commit | 12345de32a5700fcb7cb80e244b070795984a7d9 (patch) | |
tree | 1bed74b3684679977fa631ed2bafeb3090ca67ce /server/sonar-server | |
parent | d141b9a446e1bf2bacd1c1eb71bfdb08358fb786 (diff) | |
download | sonarqube-12345de32a5700fcb7cb80e244b070795984a7d9.tar.gz sonarqube-12345de32a5700fcb7cb80e244b070795984a7d9.zip |
Fix typo of api/components description
Diffstat (limited to 'server/sonar-server')
-rw-r--r-- | server/sonar-server/src/main/java/org/sonar/server/component/ws/ComponentsWs.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-server/src/main/java/org/sonar/server/component/ws/ComponentsWs.java b/server/sonar-server/src/main/java/org/sonar/server/component/ws/ComponentsWs.java index 12296938544..0da1a4f5787 100644 --- a/server/sonar-server/src/main/java/org/sonar/server/component/ws/ComponentsWs.java +++ b/server/sonar-server/src/main/java/org/sonar/server/component/ws/ComponentsWs.java @@ -39,7 +39,7 @@ public class ComponentsWs implements WebService { public void define(Context context) { NewController controller = context.createController("api/components") .setSince("4.2") - .setDescription("Get information about a component (file, directory, project, ...) and its ancestors or descendants.<br>" + + .setDescription("Get information about a component (file, directory, project, ...) and its ancestors or descendants. " + "Update a project or module key."); for (ComponentsWsAction action : actions) { |