* 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
This commit is contained in:
zzak 2013-02-27 04:22:08 +00:00
Родитель ab0d28c1bd
Коммит 6c9fdc616a
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Wed Feb 27 13:21:00 2013 Zachary Scott <zachary@zacharyscott.net>
* vm.c (Thread): Typo in overview, swap setting and getting
Wed Feb 27 13:02:00 2013 Zachary Scott <zachary@zacharyscott.net>
* vm.c (Thread): Documentation overview of Thread class

2
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.
*