Merge pull request #49416 from Shopify/fix-render-call-extractor-on-ruby-3.3

Fix RenderCallExtractor to be compatible with Ruby 3.3
This commit is contained in:
Rafael Mendonça França 2023-09-28 11:57:23 -04:00 committed by GitHub
commit af95a7d89f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -179,7 +179,7 @@ def on_arg_paren(content)
end
def on_paren(content)
content
content.size == 1 ? content.first : content
end
end