diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-11-07 17:02:56 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-11-07 17:02:56 +0000 |
commit | 721ec2272cccb249ae15e62caebdd5c8caf1e276 (patch) | |
tree | 1abd40f3f7897c8346b7d9999673d928f64bc023 /lib | |
parent | d702ec4af60a51591a9b3a931bf9c181c1e9a6dd (diff) | |
download | ruby-721ec2272cccb249ae15e62caebdd5c8caf1e276.tar.gz |
typo [Fixes GH-435] PAtch by @zed-0xff https://github.com/ruby/ruby/pull/435
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43568 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/thwait.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/thwait.rb b/lib/thwait.rb index f5876236e4..f6bf314b4b 100644 --- a/lib/thwait.rb +++ b/lib/thwait.rb @@ -15,7 +15,7 @@ require "e2mmap.rb" # # Example: # -# ThreadsWait.all_wait(thr1, thr2, ...) do |t| +# ThreadsWait.all_waits(thr1, thr2, ...) do |t| # STDERR.puts "Thread #{t} has terminated." # end # |