From 32621b75950d3ed38fb4c0b3734129010cd38abf Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 27 Nov 2004 13:33:34 +0000 Subject: String::IO -> StringIO git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7394 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/stringio/stringio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/stringio/stringio.c b/ext/stringio/stringio.c index 04c02aef9..4d960c4ea 100644 --- a/ext/stringio/stringio.c +++ b/ext/stringio/stringio.c @@ -78,7 +78,7 @@ check_strio(self) { Check_Type(self, T_DATA); if (!IS_STRIO(self)) { - rb_raise(rb_eTypeError, "wrong argument type %s (expected String::IO)", + rb_raise(rb_eTypeError, "wrong argument type %s (expected StringIO)", rb_class2name(CLASS_OF(self))); } return DATA_PTR(self); -- cgit