summaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-02-28 02:45:23 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-02-28 02:45:23 +0000
commit8db23b37400493071ce7599f90474f6ea1a26761 (patch)
tree7e5d3b3352dbd38446002315e32d41f271167573 /bignum.c
parent8c4118a72a4ac2872b1ad722d59b2231c563b6a7 (diff)
downloadruby-8db23b37400493071ce7599f90474f6ea1a26761.tar.gz
ruby-8db23b37400493071ce7599f90474f6ea1a26761.tar.xz
ruby-8db23b37400493071ce7599f90474f6ea1a26761.zip
* exception error messages updated. [ruby-core:04497]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@8035 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bignum.c b/bignum.c
index 3fecbdcc8..b6cb7b65b 100644
--- a/bignum.c
+++ b/bignum.c
@@ -1971,7 +1971,7 @@ rb_big_coerce(x, y)
return rb_assoc_new(rb_int2big(FIX2LONG(y)), x);
}
else {
- rb_raise(rb_eTypeError, "Can't coerce %s to Bignum",
+ rb_raise(rb_eTypeError, "can't coerce %s to Bignum",
rb_obj_classname(y));
}
/* not reached */