diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-08-23 17:49:08 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-08-23 17:49:08 +0000 |
commit | 4ffb36163018fdc2b6045b63ab9d0ed460a9588d (patch) | |
tree | e477826615248eb0ec7e55f848f80cb9f5344e02 /enum.c | |
parent | 1289a7a11fe55a4e37d923fc6b0af2c228e83175 (diff) | |
download | ruby-4ffb36163018fdc2b6045b63ab9d0ed460a9588d.tar.gz |
fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1708 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enum.c')
-rw-r--r-- | enum.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -208,7 +208,7 @@ sort_by_i(i, memo) VALUE i; NODE *memo; { - VALUE e = rb_ary_new3(3, rb_yield(e), INT2NUM(memo->u3.cnt), i); + VALUE e = rb_ary_new3(3, rb_yield(i), INT2NUM(memo->u3.cnt), i); rb_ary_push(memo->u1.value, e); memo->u3.cnt++; return Qnil; |