diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/DeclarationOrderCheck.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/DeclarationOrderCheck.java index 67cf30be7..b75e11b4a 100644 --- a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/DeclarationOrderCheck.java +++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/DeclarationOrderCheck.java @@ -27,13 +27,14 @@ import java.util.Stack; /** *
- * According to + * Checks that the parts of a class or interface declaration + * appear in the order suggested by the * - * Code Conventions for the Java Programming Language - * , the parts of a class or interface declaration should appear in the - * following order - * + * href="http://java.sun.com/docs/codeconv/html/CodeConventions.doc2.html#1852" + * >Code Conventions for the Java Programming Language. + *
+ *+ *
* An example of how to configure the check is: