]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3624 Fix typos in PMD XPath rule template
authorEvgeny Mandrikov <mandrikov@gmail.com>
Thu, 5 Jul 2012 08:30:42 +0000 (14:30 +0600)
committerEvgeny Mandrikov <mandrikov@gmail.com>
Thu, 5 Jul 2012 08:38:28 +0000 (14:38 +0600)
plugins/sonar-l10n-en-plugin/src/main/resources/org/sonar/l10n/pmd/rules/pmd/XPathRule.html

index ac388e349484ceab7bc8820ae57b33548d55ffbc..2199e3c7103ec217910693d35d1bc7b464aa595e 100644 (file)
@@ -1,20 +1,20 @@
 PMD provides a very handy method for creating new rules by writing an XPath query. When the XPath query finds a match, a violation is created.
-    Let's take a simple example : assume we have a Factory class that must be always declared final. 
-    We'd like to report a violation each time a declaration of Factory is not declared final. Consider the following class: :
+Let's take a simple example: assume we have a Factory class that must be always declared final.
+We'd like to report a violation each time a declaration of Factory is not declared final. Consider the following class:
 <pre>
 public class a {
-       Factory f1;
+  Factory f1;
 
-       void myMethod() {
-               Factory f2;
-               int a;
-       }
+  void myMethod() {
+    Factory f2;
+    int a;
+  }
 }
 </pre>
-       The following expression does the magic we need:
+The following expression does the magic we need:
 <pre>
 //VariableDeclarator
  [../Type/ReferenceType/ClassOrInterfaceType
   [@Image = 'Factory'] and ..[@Final='false']]
 </pre>
-       See the <a href="http://pmd.sourceforge.net/xpathruletutorial.html">XPath rule tutorial</a> for more information.
\ No newline at end of file
+See the <a href="http://pmd.sourceforge.net/xpathruletutorial.html" target="_blank">XPath rule tutorial</a> for more information.