summaryrefslogtreecommitdiff
path: root/variable.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-13 02:53:27 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-12-13 02:53:27 +0000
commit3477670963c7cc4d929e5196369f5327421ff62d (patch)
tree67123c39b26798bbe06cb91d593a7e67037d634e /variable.c
parentd8f619e1a7b703ca1dd6c9c63be63c2b1492e9bb (diff)
* array.c: fix comment to remove the word "shady".
* variable.c: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44165 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 5d200bb992..f2cb4542de 100644
--- a/variable.c
+++ b/variable.c
@@ -2185,7 +2185,7 @@ rb_const_set(VALUE klass, ID id, VALUE val)
if (load && (ele = check_autoload_data(load)) && (ele->thread == rb_thread_current())) {
rb_clear_constant_cache();
- ele->value = val; /* autoload_i is shady */
+ ele->value = val; /* autoload_i is non-WB-protected */
return;
}
/* otherwise, allow to override */