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

* numeric.c (DBL_EPSILON): fix typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3174 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2002-12-19 13:56:28 +00:00
parent 98ecd65d9a
commit 32145b0652
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Thu Dec 19 22:55:49 2002 NAKAMURA Usaku <usa@ruby-lang.org>
* numeric.c (DBL_EPSILON): fix typo.
Thu Dec 19 22:35:20 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* eval.c (assign): avoid [BUG] at multiple attribute assignment.

View file

@ -23,7 +23,7 @@
#endif
#ifndef DBL_EPSILON
#define 2.2204460492503131E-16
#define DBL_EPSILON 2.2204460492503131E-16
#endif
static ID id_coerce, id_to_i, id_div;