summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-23 08:48:44 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-05-23 08:48:44 +0000
commitb4f1eaa4933185797a202e8d0486cfd15fe19457 (patch)
tree5dc70a10a2a7bc04c605f0fad5a71446e8097287 /object.c
parent39f09ca13f5f1d421fb69656e91f896371cf101b (diff)
* ext/openssl/lib/openssl/x509-internal.rb, lib/forwardable.rb,
lib/irb/cmd/fork.rb, lib/mutex_m.rb, lib/shell/process-controller.rb, lib/sync.rb, object.c: suppress warnings patched by Benoit Daloze at [ruby-core:30366]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27967 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/object.c b/object.c
index 52745503c8..a7f05a12cc 100644
--- a/object.c
+++ b/object.c
@@ -608,7 +608,7 @@ rb_obj_tap(VALUE obj)
* def self.one() end
* def two() end
* def Chatty.three() end
- * class <<self
+ * class << self
* remove_method :three
* remove_method :one
* end