style: fix rubocop offenses

Co-Authored-By: Claude Opus 4.5 <[email protected]>
This commit is contained in:
Charles-P. Clermont
2026-01-26 16:52:21 -05:00
co-authored by Claude Opus 4.5
parent 1b420ab6d8
commit 6f03452245
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ module Liquid
end
def inner_parse(markup, ss, cache)
if (markup.start_with?("(") && markup.end_with?(")")) && markup =~ RANGES_REGEX
if markup.start_with?("(") && markup.end_with?(")") && markup =~ RANGES_REGEX
start_markup = Regexp.last_match(1)
end_markup = Regexp.last_match(2)
start_obj = parse(start_markup, ss, cache)