summaryrefslogtreecommitdiff
path: root/marshal.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-16 05:36:54 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-16 05:36:54 +0000
commit10b86da1b19183fe6a2f436973ad57eaf52e267e (patch)
tree2cee05c5fe8a7dce27ee0d81a97b8f824a39f60b /marshal.c
parentea339864afeeb59a3101d597b65ea2005531dc48 (diff)
* marshal.c (class2path): fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5470 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'marshal.c')
-rw-r--r--marshal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/marshal.c b/marshal.c
index c85d59f76b..f1993a643b 100644
--- a/marshal.c
+++ b/marshal.c
@@ -106,7 +106,7 @@ class2path(klass)
char *n = RSTRING(path)->ptr;
if (rb_path2class(n) != klass) {
- rb_raise(rb_eArgError, "%s cannot be referfed", n);
+ rb_raise(rb_eArgError, "%s cannot be referred", n);
}
return path;
}