Ruby - Inheritance
Find the error in this Ruby code:
class Parent
def display
"Parent display"
end
end
class Child < Parent
def display
super(1)
end
end
puts Child.new.display