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

* ext/-test-/array/resize/resize.c (Init_resize): renamed method

for test.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30471 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2011-01-05 20:47:01 +00:00
parent 65ea2eed78
commit 5631792727
2 changed files with 7 additions and 7 deletions

View file

@ -10,5 +10,5 @@ ary_resize(VALUE ary, VALUE len)
void
Init_resize(void)
{
rb_define_method(rb_cArray, "resize", ary_resize, 1);
rb_define_method(rb_cArray, "__resize__", ary_resize, 1);
}