Skip to content

Commit

Permalink
Fix typo in ForbiddenInheritanceCheck (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiaanspeck authored Nov 17, 2024
1 parent 9bffb85 commit 29aa30a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ public class ForbiddenInheritanceCheck extends MagikCheck {

private static final String DEFAULT_FORBIDDEN_PARENTS = "";

/** Forbidden parents to inhertit from, separated by ','. */
/** Forbidden parents to inherit from, separated by ','. */
@RuleProperty(
key = "forbidden parents",
defaultValue = "" + DEFAULT_FORBIDDEN_PARENTS,
description = "Forbidden parents to inhertit from, separated by ','",
description = "Forbidden parents to inherit from, separated by ','",
type = "STRING")
@SuppressWarnings("checkstyle:VisibilityModifier")
public String forbiddenParents = DEFAULT_FORBIDDEN_PARENTS;
Expand Down

0 comments on commit 29aa30a

Please sign in to comment.