summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-24 04:39:54 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-24 04:39:54 +0000
commitae155a86a9be97735602dce4534523761dd13164 (patch)
tree1b93cd18497246cdf20e7bb937455babcd447bb3
parentf917b4d28a08307698141bf137d5c4398830dc7d (diff)
* vm.c: Typo in ObjectSpace::WeakMap overview [Backport #7933]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@39452 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 c4dd79e433..e88dc3041b 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 [Backport #7933]
+
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.