summaryrefslogtreecommitdiffstats
path: root/ext/stringio
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-27 13:33:34 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-27 13:33:34 +0000
commita8055fefa218dc8fcf004b586373fdaaae5ac0c1 (patch)
treef878b7ed835acb11c998ebe59ee9bd0132d20bca /ext/stringio
parentd9f84f4c4032411a553b7d9e0f988722ea4065c8 (diff)
downloadruby-a8055fefa218dc8fcf004b586373fdaaae5ac0c1.tar.gz
ruby-a8055fefa218dc8fcf004b586373fdaaae5ac0c1.tar.xz
ruby-a8055fefa218dc8fcf004b586373fdaaae5ac0c1.zip
String::IO -> StringIO
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7394 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/stringio')
-rw-r--r--ext/stringio/stringio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/stringio/stringio.c b/ext/stringio/stringio.c
index a7cdfc2bc..09ecc6926 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);