summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-02 07:57:45 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-12-02 07:57:45 +0000
commitc5824f38adf2707ca2c64fdc6f2eaa42826ac8ab (patch)
tree135411dbe186a1ff238ec7c52ca46759936523ee /lib
parent98eaac15ffbe51836ce13d6c8bd5bb85e6d2219b (diff)
fix typo
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38140 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/weakref.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/weakref.rb b/lib/weakref.rb
index 0689efadec..dd2cee16aa 100644
--- a/lib/weakref.rb
+++ b/lib/weakref.rb
@@ -45,7 +45,7 @@ require "delegate"
# c['baz'] = Object.new
# c['qux'] = omg
# puts c.inspect
-# #=> {"foo"=>"bar", "baz"=>#<Object:0x007f4ddfc6cb48>, "qux"=>"omg"}
+# #=> {"foo"=>"bar", "baz"=>#<Object:0x007f4ddfc6cb48>, "qux"=>"lol"}
#
# # Now run the garbage collector
# GC.start