diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-01-27 13:01:26 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2014-01-27 13:01:26 +0100 |
commit | f938f64f042e4ba47ce7d574e49327c79904dff9 (patch) | |
tree | e90c2792e07c4db2396d81fb6312f1fd95d46ad2 /sonar-core | |
parent | 9a78242133b1c0ebd76d7d5e638893428237798a (diff) | |
download | sonarqube-f938f64f042e4ba47ce7d574e49327c79904dff9.tar.gz sonarqube-f938f64f042e4ba47ce7d574e49327c79904dff9.zip |
Update comments
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/test/java/org/sonar/core/source/HtmlTextDecoratorTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-core/src/test/java/org/sonar/core/source/HtmlTextDecoratorTest.java b/sonar-core/src/test/java/org/sonar/core/source/HtmlTextDecoratorTest.java index 59e53b5ba0a..68c0bdc139a 100644 --- a/sonar-core/src/test/java/org/sonar/core/source/HtmlTextDecoratorTest.java +++ b/sonar-core/src/test/java/org/sonar/core/source/HtmlTextDecoratorTest.java @@ -325,7 +325,7 @@ public class HtmlTextDecoratorTest { List<String> htmlOutput = htmlTextDecorator.decorateTextWithHtml(javadocWithHtml, decorationData, 4, null); assertThat(htmlOutput).hasSize(9); - // Begin since line 4 + // Begin from line 4 assertThat(htmlOutput).containsExactly( "<span class=\"cppd\"> * This framework can used for instance in order to :</span>", "<span class=\"cppd\"> * <ul></span>", @@ -392,7 +392,7 @@ public class HtmlTextDecoratorTest { List<String> htmlOutput = htmlTextDecorator.decorateTextWithHtml(javadocWithHtml, decorationData, 4, 8); assertThat(htmlOutput).hasSize(5); - // Begin at line 4 and finish at line 8 + // Begin from line 4 and finish at line 8 assertThat(htmlOutput).containsExactly( "<span class=\"cppd\"> * This framework can used for instance in order to :</span>", "<span class=\"cppd\"> * <ul></span>", |