Skip to content

Commit 993f253

Browse files
authored
Fix ruby script in "test_parse_method_bracket" (#927)
Because it's syntax error.
1 parent d12272b commit 993f253

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/rdoc/test_rdoc_parser_ruby.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -1960,10 +1960,10 @@ def meth_with_args_before
19601960
def test_parse_method_bracket
19611961
util_parser <<-RUBY
19621962
class C
1963-
def [] end
1964-
def self.[] end
1965-
def []= end
1966-
def self.[]= end
1963+
def []; end
1964+
def self.[]; end
1965+
def []=; end
1966+
def self.[]=; end
19671967
end
19681968
RUBY
19691969

0 commit comments

Comments
 (0)