1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Modified some RDoc formatting.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3379 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
gsinclair 2003-01-20 16:05:47 +00:00
parent 2f2a51a47b
commit 1c06419911

View file

@ -87,14 +87,14 @@ class ThreadsWait
attr :threads
#
# Returns true if there are no threads to be synchronized.
# Returns +true+ if there are no threads to be synchronized.
#
def empty?
@threads.empty?
end
#
# Returns true if any thread has terminated.
# Returns +true+ if any thread has terminated.
#
def finished?
!@wait_queue.empty?