From f20312468b30302b0101dc2f68e47ad896a3aaa0 Mon Sep 17 00:00:00 2001 From: Sam Bostock Date: Mon, 23 Oct 2023 23:17:33 -0400 Subject: [PATCH] Fix "Chacks" -> "Checks" typo --- lib/rubocop/ast/node/if_node.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rubocop/ast/node/if_node.rb b/lib/rubocop/ast/node/if_node.rb index a65da291a..d5912c685 100644 --- a/lib/rubocop/ast/node/if_node.rb +++ b/lib/rubocop/ast/node/if_node.rb @@ -81,7 +81,7 @@ def modifier_form? (if? || unless?) && super end - # Chacks whether the `if` node has nested `if` nodes in any of its + # Checks whether the `if` node has nested `if` nodes in any of its # branches. # # @note This performs a shallow search.