diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-10-06 07:23:40 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-10-06 07:23:40 +0000 |
commit | 2a07445e0bb51e16c801329856234acc78dd28ce (patch) | |
tree | 14ea964d4fed4d2e24fc3417fcd059a7ba59b995 /marshal.c | |
parent | 64e098503a75ea72fbb96ba97c9e95c5441be758 (diff) |
* marshal.c (w_object): wrong method name in the message.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4706 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'marshal.c')
-rw-r--r-- | marshal.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -649,7 +649,7 @@ w_object(obj, arg, limit, weak) w_class(TYPE_DATA, obj, arg); if (!rb_respond_to(obj, s_dump_data)) { rb_raise(rb_eTypeError, - "class %s needs to have instance method `marshal_dump'", + "class %s needs to have instance method `_dump_data'", rb_obj_classname(obj)); } v = rb_funcall(obj, s_dump_data, 0); |