ruby-changes:73732
From: Yuichiro <ko1@a...>
Date: Mon, 26 Sep 2022 09:38:48 +0900 (JST)
Subject: [ruby-changes:73732] d89f8a0467 (master): [ruby/rdoc] Fix ruby script in "test_parse_method_bracket" (https://github.com/ruby/rdoc/pull/927)
https://git.ruby-lang.org/ruby.git/commit/?id=d89f8a0467 From d89f8a046753e2f166ee252510aadf1579dbcd63 Mon Sep 17 00:00:00 2001 From: Yuichiro Kaneko <spiketeika@g...> Date: Mon, 26 Sep 2022 09:38:24 +0900 Subject: [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 --- test/rdoc/test_rdoc_parser_ruby.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/rdoc/test_rdoc_parser_ruby.rb b/test/rdoc/test_rdoc_parser_ruby.rb index ef8ad91668..76fb28808c 100644 --- a/test/rdoc/test_rdoc_parser_ruby.rb +++ b/test/rdoc/test_rdoc_parser_ruby.rb @@ -1960,10 +1960,10 @@ end https://github.com/ruby/ruby/blob/trunk/test/rdoc/test_rdoc_parser_ruby.rb#L1960 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 -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/