From 52d009b3f8bfd4be2ebde9de65187fc7a10b7d9c Mon Sep 17 00:00:00 2001 From: Jochen Van de Velde Date: Fri, 16 Dec 2016 20:24:44 +0100 Subject: [PATCH] minor: correct Javadoc for AbstractImportRule --- .../tools/checkstyle/checks/imports/AbstractImportRule.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/puppycrawl/tools/checkstyle/checks/imports/AbstractImportRule.java b/src/main/java/com/puppycrawl/tools/checkstyle/checks/imports/AbstractImportRule.java index f27ab6e3c..2def8551f 100644 --- a/src/main/java/com/puppycrawl/tools/checkstyle/checks/imports/AbstractImportRule.java +++ b/src/main/java/com/puppycrawl/tools/checkstyle/checks/imports/AbstractImportRule.java @@ -27,7 +27,7 @@ abstract class AbstractImportRule { /** Indicates whether to allow access or not. */ private final boolean allowed; - /** Indicates if the guard only applies to this package. */ + /** Indicates if the rule only applies to this package. */ private final boolean localOnly; /** @@ -39,7 +39,7 @@ abstract class AbstractImportRule { /** * Constructs an instance. * @param allow whether to allow access. - * @param localOnly whether the rules is to be applied locally only. + * @param localOnly whether the rule is to be applied locally only. * @param regExp whether the name is to be interpreted as a regular * expression. */