mirror of
https://github.com/PeterCamilleri/fOOrth
synced 2024-11-16 07:47:56 +01:00
Clarified some comments.
This commit is contained in:
parent
f936c95e08
commit
1873d510d1
1 changed files with 4 additions and 2 deletions
|
@ -10,14 +10,16 @@ class Object
|
|||
|
||||
#Access/create the object's exclusive fOOrth dictionary.
|
||||
#<br>Decree!
|
||||
#* These are to be the only reference to @_private_foorth_exclusive!
|
||||
#* This method and the next are to be the only references
|
||||
# to the @_private_foorth_exclusive variable.
|
||||
def foorth_exclusive
|
||||
@_private_foorth_exclusive ||= Hash.new
|
||||
end
|
||||
|
||||
#Does this object have exclusive methods defined on it?
|
||||
#<br>Decree!
|
||||
#* These are to be the only reference to @_private_foorth_exclusive!
|
||||
#* This method and the previous are to be the only references
|
||||
# to the @_private_foorth_exclusive variable.
|
||||
def foorth_has_exclusive?
|
||||
instance_variable_defined?(:@_private_foorth_exclusive)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue