mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
numeric.c: fix typo
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65680 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
75521b8c1d
commit
68261c06b5
1 changed files with 1 additions and 1 deletions
|
@ -1109,7 +1109,7 @@ rb_flo_div_flo(VALUE x, VALUE y)
|
|||
{
|
||||
double num = RFLOAT_VALUE(x);
|
||||
double den = RFLOAT_VALUE(y);
|
||||
double ret = double_div_double(x, y);
|
||||
double ret = double_div_double(num, den);
|
||||
return DBL2NUM(ret);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue