renames SelfSlot to SelfsSlot

in the hope to make a little more distinction
This commit is contained in:
Torsten Ruger
2015-10-07 10:04:00 +03:00
parent f0611e52db
commit cc89e49a43
3 changed files with 6 additions and 6 deletions

View File

@ -8,7 +8,7 @@ module Virtual
# Four known objects exist and those correspond to subclasses:
# - the message that has been received: MessageSlot
# - the frame of the method that is executing (local variables): FrameSlot
# - self as an object: SelfSlot
# - self as an object: SelfsSlot
# - a message that will be sent, NewMessageSlot
# additionally frame, self and return are slots in Message and NewMessage
@ -41,6 +41,6 @@ module Virtual
end
require_relative "message_slot"
require_relative "self_slot"
require_relative "selfs_slot"
require_relative "frame_slot"
require_relative "new_message_slot"