[ruby/prism] Remove trailing parenthesis in Location#pretty_print

https://github.com/ruby/prism/commit/8eaa199a28
This commit is contained in:
gazayas 2023-10-04 20:14:36 +09:00 коммит произвёл git
Родитель 6ae2996e29
Коммит 488c0ed051
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -117,7 +117,7 @@ module Prism
end end
def pretty_print(q) def pretty_print(q)
q.text("(#{start_line},#{start_column})-(#{end_line},#{end_column}))") q.text("(#{start_line},#{start_column})-(#{end_line},#{end_column})")
end end
def ==(other) def ==(other)