1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/rdoc] Fix ruby script in "test_parse_method_bracket" (https://github.com/ruby/rdoc/pull/927)

Because it's syntax error.

https://github.com/ruby/rdoc/commit/993f2532ff
This commit is contained in:
Yuichiro Kaneko 2022-09-26 09:38:24 +09:00 committed by git
parent 1481e6828c
commit d89f8a0467

View file

@ -1960,10 +1960,10 @@ end
def test_parse_method_bracket
util_parser <<-RUBY
class C
def [] end
def self.[] end
def []= end
def self.[]= end
def []; end
def self.[]; end
def []=; end
def self.[]=; end
end
RUBY