small fixes

This commit is contained in:
Torsten Ruger
2016-12-27 20:34:11 +02:00
parent b9b05378f5
commit aaa94f0743
5 changed files with 14 additions and 6 deletions

View File

@ -28,7 +28,7 @@ module Register
attr_accessor :register , :array , :index
def to_s
"#{self.class.name}: #{array}[#{index}] -> #{register}"
"#{self.class.name}: #{register} -> #{array}[#{index}]"
end
end