summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-10-04 17:54:29 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-10-04 17:54:29 +0000
commita2c9020808417572521c711cf4ad9a3c7b556575 (patch)
tree421344d18596a3c8c3d998e41fcf848ac54a5054 /object.c
parent1e3062ede1765f21c501068b3489c390c914e55f (diff)
* bignum.c (rb_big_rshift): num should be initialized by carry
bits if x is negative. * bignum.c (bigdivmod): len for bignum zero is 1, not 0. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2936 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/object.c b/object.c
index 455d353b39..72805e9d67 100644
--- a/object.c
+++ b/object.c
@@ -87,7 +87,7 @@ VALUE
rb_obj_type(obj)
VALUE obj;
{
- rb_warn("`type' is deprecated; use `class'");
+ rb_warn("Object#type is deprecated; use Object#class");
return rb_class_real(CLASS_OF(obj));
}