Merge pull request #650 from ptrktn/main

Omit parentheses in no‑arg defs
This commit is contained in:
Emily Bache 2025-09-03 12:10:43 +00:00 committed by GitHub
commit c6f842ef29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -62,7 +62,7 @@ class Item
@quality = quality @quality = quality
end end
def to_s() def to_s
"#{@name}, #{@sell_in}, #{@quality}" "#{@name}, #{@sell_in}, #{@quality}"
end end
end end