diff --git a/spec/ameba/rule/lint/logical_without_paren_spec.cr b/spec/ameba/rule/lint/logical_without_paren_spec.cr index d4977f7a9..4c6f6f9bb 100644 --- a/spec/ameba/rule/lint/logical_without_paren_spec.cr +++ b/spec/ameba/rule/lint/logical_without_paren_spec.cr @@ -35,7 +35,7 @@ module Ameba::Rule::Lint CRYSTAL end - it "fails if logical operator in call args doesn't have parenthesis" do + it "fails if logical operator in call args doesn't have parentheses" do expect_issue subject, <<-CRYSTAL if foo.includes? "bar" || foo.includes? "batz" # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ error: Logical operator in method args without parenthesis is not allowed