Skip to content

Commit

Permalink
fix incorrect function call in Bignum#===. fix #1494
Browse files Browse the repository at this point in the history
  • Loading branch information
Watson1978 committed Apr 3, 2012
1 parent ca3efd0 commit 1070a0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bignum.c
Original file line number Diff line number Diff line change
Expand Up @@ -3653,7 +3653,7 @@ Init_Bignum(void)
rb_objc_define_method(rb_cBignum, ">=", big_ge, 1);
rb_objc_define_method(rb_cBignum, "<", big_lt, 1);
rb_objc_define_method(rb_cBignum, "<=", big_le, 1);
rb_objc_define_method(rb_cBignum, "===", rb_big_eq, 1);
rb_objc_define_method(rb_cBignum, "===", rb_big_eq_imp, 1);
rb_objc_define_method(rb_cBignum, "eql?", rb_big_eql, 1);
rb_objc_define_method(rb_cBignum, "hash", rb_big_hash, 0);
rb_objc_define_method(rb_cBignum, "to_f", rb_big_to_f, 0);
Expand Down

0 comments on commit 1070a0d

Please sign in to comment.