]> source.dussan.org Git - sonarqube.git/commitdiff
Sonar Markdown : Fix typo in the javadoc (Thanks Evgeny)
authorFreddy Mallet <freddy.mallet@gmail.com>
Sun, 24 Apr 2011 09:00:36 +0000 (11:00 +0200)
committerFreddy Mallet <freddy.mallet@gmail.com>
Sun, 24 Apr 2011 09:00:36 +0000 (11:00 +0200)
sonar-markdown/src/main/java/org/sonar/markdown/HtmlEmphasisChannel.java

index da0c263cb137b98e662508bb5898ce6423407773..392a37aa345818414c4a1d0bf9be79a3bc145a4a 100644 (file)
@@ -24,7 +24,7 @@ import org.sonar.channel.RegexChannel;
 /**
  * Markdown treats asterisks (*) as indicators of emphasis. Text wrapped with one * will be wrapped with an HTML {@literal <em>} tag.
  * 
- * E.g., the input *word* will produce {@literal <em>}work{@literal </word>}
+ * E.g., the input *word* will produce {@literal <em>}work{@literal </em>}
  */
 class HtmlEmphasisChannel extends RegexChannel<MarkdownOutput> {