summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-10-06 19:51:40 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-10-06 19:51:40 +0000
commit61d460e5e18d9cebf13157e95d55f3cf1b139205 (patch)
treef2de7b2e760f7c3771fa3048829504fe6389e98e /thread.c
parent5683d8b48e4bcc6b050202381bf7a5aaf5646aff (diff)
* thread.c (rb_thread_aref):
Grammar in Thread documentation. Patch by Steve Klabnik [ruby-dev:47799] [Bug #7099] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37112 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/thread.c b/thread.c
index 8320ed29bd..035ccebd7d 100644
--- a/thread.c
+++ b/thread.c
@@ -2486,8 +2486,8 @@ rb_thread_local_aref(VALUE thread, ID id)
* #<Thread:0x00000002a54130 dead>: C
*
* Thread#[] and Thread#[]= are not thread-local but fiber-local.
- * This confusion was not exist until Ruby 1.8 because
- * fiber is available since Ruby 1.9.
+ * This confusion did not exist in Ruby 1.8 because
+ * fibers were only available since Ruby 1.9.
* Ruby 1.9 chooses that the methods behaves fiber-local to save
* following idiom for dynamic scope.
*