* ext/bigdecimal/bigdecimal.c (Init_bigdecimal): fix typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18259 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2008-07-29 12:38:33 +00:00
Родитель 8da30b8928
Коммит 995e44e050
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Tue Jul 29 21:38:08 2008 Yusuke Endoh <mame@tsg.ne.jp>
* ext/bigdecimal/bigdecimal.c (Init_bigdecimal): fix typo.
Tue Jul 29 21:35:59 2008 Yusuke Endoh <mame@tsg.ne.jp>
* test/etc/test_etc.rb (test_passwd): age field may be string under

Просмотреть файл

@ -1844,7 +1844,7 @@ Init_bigdecimal(void)
/*
* 0x01: Determines what happens when the result of a computation is an
* underflow (a result too large to be represented). See BigDecimal.mode.
* overflow (a result too large to be represented). See BigDecimal.mode.
*/
rb_define_const(rb_cBigDecimal, "EXCEPTION_OVERFLOW",INT2FIX(VP_EXCEPTION_OVERFLOW));