diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-12-19 13:56:28 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-12-19 13:56:28 +0000 |
commit | 32145b065247829d30ddad2616f796625ca37d9c (patch) | |
tree | c7a45c2deeefe8875982c022d162e6a5d7164bb0 /numeric.c | |
parent | 98ecd65d9a9a6fec29fbd3db9a26cc62259182bf (diff) | |
download | ruby-32145b065247829d30ddad2616f796625ca37d9c.tar.gz |
* numeric.c (DBL_EPSILON): fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3174 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'numeric.c')
-rw-r--r-- | numeric.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |