aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2017-10-26 14:57:47 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2017-10-26 16:21:21 +0200
commit1b9d60f26535f3412ce4cd9ccf65ccb0e1b3af03 (patch)
tree76d361aa2cd77b67bd0107b091abe56559f5bead /sonar-plugin-api
parent304059081a194c1f3ed6d55929824107b7b228b5 (diff)
downloadsonarqube-1b9d60f26535f3412ce4cd9ccf65ccb0e1b3af03.tar.gz
sonarqube-1b9d60f26535f3412ce4cd9ccf65ccb0e1b3af03.zip
Fix quality flaws
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/config/EmailSettings.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/config/EmailSettings.java b/sonar-plugin-api/src/main/java/org/sonar/api/config/EmailSettings.java
index db04d12b285..69117521b1d 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/config/EmailSettings.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/config/EmailSettings.java
@@ -147,14 +147,14 @@ public class EmailSettings {
.build(),
PropertyDefinition.builder(FROM)
.name("From address")
- .description("Emails will come from this address. For example - \"noreply@sonarsource.com\". Note that server may ignore this setting.")
+ .description("Emails will come from this address. For example - \"noreply@sonarsource.com\". Note that the mail server may ignore this setting.")
.defaultValue(FROM_DEFAULT)
.category(CATEGORY_GENERAL)
.subCategory(SUBCATEGORY_EMAIL)
.build(),
PropertyDefinition.builder(FROM_NAME)
.name("From name")
- .description("Emails will come from this address name. For example - \"SonarQube\". Note that server may ignore this setting.")
+ .description("Emails will come from this address name. For example - \"SonarQube\". Note that the mail server may ignore this setting.")
.defaultValue(FROM_NAME_DEFAULT)
.category(CATEGORY_GENERAL)
.subCategory(SUBCATEGORY_EMAIL)