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

Fix :nodoc: definition. [ruby-dev:40949]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27287 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2010-04-10 22:09:09 +00:00
parent f2467cd06a
commit e707e05fe8
2 changed files with 3 additions and 6 deletions

View file

@ -204,12 +204,10 @@ class Delegator < BasicObject
end
end
# :nodoc:
def initialize_clone(obj)
def initialize_clone(obj) # :nodoc:
self.__setobj__(obj.__getobj__.clone)
end
# :nodoc:
def initialize_dup(obj)
def initialize_dup(obj) # :nodoc:
self.__setobj__(obj.__getobj__.dup)
end
private :initialize_clone, :initialize_dup

View file

@ -15,8 +15,7 @@ class Mutex
end
class Thread
# :nodoc:
MUTEX_FOR_THREAD_EXCLUSIVE = Mutex.new
MUTEX_FOR_THREAD_EXCLUSIVE = Mutex.new # :nodoc:
# call-seq:
# Thread.exclusive { block } => obj