summaryrefslogtreecommitdiff
path: root/variable.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-12-11 02:49:37 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-12-11 02:49:37 +0000
commit9e24e523a6b90dce4028e9eb07b6a1ca07d04974 (patch)
treeac5a480c875b2c7e08acdd29897c738e109338d1 /variable.c
parent4ddc3c196b75150f259450daf2956ff72de87651 (diff)
* variable.c (rb_define_const): typo fixed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11376 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'variable.c')
-rw-r--r--variable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/variable.c b/variable.c
index a617e7e8d7..44e2403639 100644
--- a/variable.c
+++ b/variable.c
@@ -1686,7 +1686,7 @@ rb_define_const(klass, name, val)
ID id = rb_intern(name);
if (!rb_is_const_id(id)) {
- rb_warn("rb_define_const: invalide name `%s' for constant", name);
+ rb_warn("rb_define_const: invalid name `%s' for constant", name);
}
if (klass == rb_cObject) {
rb_secure(4);