diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-27 13:33:34 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-27 13:33:34 +0000 |
commit | 5eec9fe63c0cd627bfa8b1ffbcfeec8b4bb57490 (patch) | |
tree | 96f5ba8f604798e43794c2c3fd880527a6048be5 /ext/stringio/stringio.c | |
parent | 0abc28742a0673602483793b57796869e88ce5b8 (diff) |
String::IO -> StringIO
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7394 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/stringio/stringio.c')
-rw-r--r-- | ext/stringio/stringio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/stringio/stringio.c b/ext/stringio/stringio.c index 04c02aef9a..4d960c4ea3 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); |