Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
guwirth committed Nov 9, 2018
1 parent 6e8f9ae commit 27e695d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public class CxxPreprocessor extends Preprocessor {
private static final String CPLUSPLUS = "__cplusplus";
private static final String EVALUATED_TO_FALSE = "[{}:{}]: '{}' evaluated to false, skipping tokens that follow";
private static final String MISSING_INCLUDE_MSG
= "Preprocessor: {} include directive error(s). This is only relevant if parser creates syntax errors. "
= "Preprocessor: {} include directive error(s). This is only relevant if parser creates syntax errors."
+ " The preprocessor searches for include files in the with 'sonar.cxx.includeDirectories'"
+ " defined directories and order.";
private final CxxLanguage language;
Expand Down
4 changes: 2 additions & 2 deletions sonar-c-plugin/src/main/java/org/sonar/plugins/c/CPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,8 @@ private static List<PropertyDefinition> compilerWarningsProperties() {
.build(),
PropertyDefinition.builder(LANG_PROP_PREFIX + CxxCompilerVcSensor.REPORT_REGEX_DEF)
.name("VC Regular Expression")
.description("Regular expression to identify the four named groups of the compiler warning message: <file>, <line>, <id>,"
+ " <message>. Leave empty to use parser's default."
.description("Regular expression to identify the four named groups of the compiler warning message: &lt;file&gt;, &lt;line&gt;, &lt;id&gt;,"
+ " &lt;message&gt;. Leave empty to use parser's default."
+ " See <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Compilers'>"
+ "this page</a> for details regarding the different regular expression that can be use per compiler.")
.subCategory(subcateg)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -397,8 +397,8 @@ private static List<PropertyDefinition> compilerWarningsProperties() {
.build(),
PropertyDefinition.builder(LANG_PROP_PREFIX + CxxCompilerVcSensor.REPORT_REGEX_DEF)
.name("VC Regular Expression")
.description("Regular expression to identify the four named groups of the compiler warning message: <file>, <line>, <id>,"
+ " <message>. Leave empty to use parser's default."
.description("Regular expression to identify the four named groups of the compiler warning message: &lt;file&gt;, &lt;line&gt;, &lt;id&gt;,"
+ " &lt;message&gt;. Leave empty to use parser's default."
+ " See <a href='https://github.com/SonarOpenCommunity/sonar-cxx/wiki/Compilers'>"
+ "this page</a> for details regarding the different regular expression that can be use per compiler.")
.subCategory(subcateg)
Expand Down

0 comments on commit 27e695d

Please sign in to comment.