From 43a162962505207daf2da558117ca01e1221600f Mon Sep 17 00:00:00 2001 From: hsbt Date: Tue, 9 Apr 2013 00:26:22 +0000 Subject: [PATCH] Fix documentation by @jc00ke [fix GH-278] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40201 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 4 ++-- 1 file 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')