diff --git a/docs/config_coding.html b/docs/config_coding.html index f710aa780..6a08bde8a 100644 --- a/docs/config_coding.html +++ b/docs/config_coding.html @@ -1082,29 +1082,6 @@ return !valid(); TreeWalker

-

SuperClone

Description

-

- Checks that an overriding clone() method invokes super.clone(). -

-

- Reference: Object.clone(). -

-

Examples

-

- To configure the check: -

-
-<module name="SuperClone"/>
-      
-

Package

-

- com.puppycrawl.tools.checkstyle.checks.coding -

-

Parent Module

-

- TreeWalker -

-

IllegalCatch

Description

Catching java.lang.Exception, java.lang.Error or java.lang.RuntimeException @@ -1389,7 +1366,7 @@ return !valid(); class="code">null for object references, zero for numeric types and char and false for booolean.

+ class="code">boolean.

Rationale: each instance variable gets initialized twice, to the same value. Java initializes each instance variable to its default diff --git a/docs/config_import.html b/docs/config_import.html index 8304769f3..f67249a4a 100644 --- a/docs/config_import.html +++ b/docs/config_import.html @@ -270,7 +270,7 @@ <module name="ImportOrder"> <property name="groups" value="java,javax"/> <property name="ordered" value="true"/> - <preperty name="separated" value="true"/> + <property name="separated" value="true"/> </module>

Package

diff --git a/docs/config_usage.html b/docs/config_usage.html index 1a08a1b2a..adf2efeaf 100644 --- a/docs/config_usage.html +++ b/docs/config_usage.html @@ -174,7 +174,7 @@ To configure the check:

-<module name="UnusedParameter"/>
+<module name="usage.UnusedParameter"/>
       

To configure the check to ignore parameters whose name ends in Temp: @@ -229,7 +229,7 @@ To configure the check:

-<module name="UnusedPrivateField"/>
+<module name="usage.UnusedPrivateField"/>
       

To configure the check to ignore fields whose name ends in Temp: diff --git a/docs/releasenotes.html b/docs/releasenotes.html index ce8f9cae0..babf87874 100644 --- a/docs/releasenotes.html +++ b/docs/releasenotes.html @@ -97,6 +97,9 @@ and variable/method name are placed on different lines (bug 848750). +

  • Fixed several typos in documentation (patch 848483 + from Ville Skytta (scop)).
  • + diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/ExplicitInitializationCheck.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/ExplicitInitializationCheck.java index 0ec899c11..8f61e4b61 100644 --- a/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/ExplicitInitializationCheck.java +++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/checks/coding/ExplicitInitializationCheck.java @@ -30,7 +30,7 @@ import com.puppycrawl.tools.checkstyle.checks.CheckUtils; * Checks if any class or object member explicitly initialized * to default for its type value (null for object * references, zero for numeric types and char - * and false for booolean. + * and false for boolean. *

    *

    * Rationale: each instance variable gets