Ruby - Methods
Identify the error in this Ruby method:
def check_number(num)
if num > 0
return 'Positive'
else
'Negative'
end
return
end