aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-23 07:06:10 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-23 07:06:10 +0000
commita14f02f0e08c2bced7ae5a1f77aab3bac4969661 (patch)
treed626e00449c2e42c79804b53063a7a6332b7f35d
parent5f2e43381383fd29fc3435297964281510bfc9dc (diff)
downloadruby-a14f02f0e08c2bced7ae5a1f77aab3bac4969661.tar.gz
* vm.c: Typo in ObjectSpace::WeakMap overview
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39429 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--gc.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ecdf07456a..2c4accfdb9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Feb 23 16:05:00 2013 Zachary Scott <zachary@zacharyscott.net>
+
+ * vm.c: Typo in ObjectSpace::WeakMap overview
+
Sat Feb 23 16:00:00 2013 Zachary Scott <zachary@zacharyscott.net>
* thread.c: Improved rdoc for ::handle_interrupt, ::pending_interrupt?
diff --git a/gc.c b/gc.c
index 341863d8d4..ace7a0882a 100644
--- a/gc.c
+++ b/gc.c
@@ -4442,7 +4442,7 @@ rb_gcdebug_sentinel(VALUE obj, const char *name)
* Document-class: ObjectSpace::WeakMap
*
* An ObjectSpace::WeakMap object holds references to
- * any objects, but those objects can get be garbage collected.
+ * any objects, but those objects can get garbage collected.
*
* This class is mostly used internally by WeakRef, please use
* +lib/weakref.rb+ for the public interface.