summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-09 00:26:22 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-09 00:26:22 +0000
commit43a162962505207daf2da558117ca01e1221600f (patch)
tree6cc99909879f342c782146768ce656adc97d715b /thread.c
parent66aa6aa500a8f146a79cea51b8ebb854f8b1b74e (diff)
Fix documentation by @jc00ke [fix GH-278]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40201 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 cd8021f1a1..72cb69b720 100644
--- a/thread.c
+++ b/thread.c
@@ -2968,7 +2968,7 @@ rb_thread_alone(void)
* call-seq:
* thr.keys -> array
*
- * Returns an an array of the names of the fiber-local variables (as Symbols).
+ * Returns an array of the names of the fiber-local variables (as Symbols).
*
* thr = Thread.new do
* Thread.current[:cat] = 'meow'
@@ -3002,7 +3002,7 @@ keys_i(VALUE key, VALUE value, VALUE ary)
* call-seq:
* thr.thread_variables -> array
*
- * Returns an an array of the names of the thread-local variables (as Symbols).
+ * Returns an array of the names of the thread-local variables (as Symbols).
*
* thr = Thread.new do
* Thread.current.thread_variable_set(:cat, 'meow')