Fixed typo

This commit is contained in:
2017-04-04 08:49:08 -04:00
committed by GitHub
parent b3f491a60b
commit 7c63c3c816

View File

@@ -26,7 +26,7 @@ class Vehicle < ActiveRecord::Base
# returns a human readable string
def to_s
if year.nil? or manke.nil? or model.nil?
if year.nil? or make.nil? or model.nil?
return "#{vin}"
else
return "#{year} #{make} #{model}"