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

Use super instead of self

This will make clear what is the expected behavior of that method call.
This commit is contained in:
Rafael Mendonça França 2020-08-26 17:44:44 +00:00
parent 0e9cd658f9
commit ce5fe05bc5
No known key found for this signature in database
GPG key ID: FC23B6D0F1EEE948

View file

@ -64,7 +64,7 @@ module ActiveSupport
end end
def inspect def inspect
"#<#{self.class.name} #{self}>" "#<#{self.class.name} #{super}>"
end end
end end