summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-27 04:22:08 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-27 04:22:08 +0000
commit6c9fdc616a89a2a99fad1a408d2d5a2fdecef75a (patch)
tree2984032677f8734ad6a5dd8e18f100abdf989115 /vm.c
parentab0d28c1bdf3b25080cdf7cbe3801a8deb6f617f (diff)
* vm.c (Thread): Typo in overview, swap setting and getting
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39522 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm.c b/vm.c
index edb969d3a4..b81f6c0cdd 100644
--- a/vm.c
+++ b/vm.c
@@ -2329,7 +2329,7 @@ Init_VM(void)
* }.resume
* }.join
*
- * This example uses #[] for setting and #[]= for getting fiber-locals,
+ * This example uses #[] for getting and #[]= for setting fiber-locals,
* you can also use #keys to list the fiber-locals for a given
* thread and #key? to check if a fiber-local exists.
*