From c9c5fb655f95b62a6dc59dc5bb1e2a526f223c5a Mon Sep 17 00:00:00 2001 From: Vitalii Elenhaupt Date: Sun, 19 Feb 2023 13:47:17 +0200 Subject: [PATCH] fix(style): correct typo in rule doc --- src/ameba/rule/style/parentheses_around_condition.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ameba/rule/style/parentheses_around_condition.cr b/src/ameba/rule/style/parentheses_around_condition.cr index a19dbabf..112d3a64 100644 --- a/src/ameba/rule/style/parentheses_around_condition.cr +++ b/src/ameba/rule/style/parentheses_around_condition.cr @@ -1,6 +1,6 @@ module Ameba::Rule::Style # A rule that checks for the presence of superfluous parentheses - # around the condition of `if`, `unless`, `case, `while` and `until`. + # around the condition of `if`, `unless`, `case`, `while` and `until`. # # For example, this is considered invalid: #