lib/hola_spenser/translator.rb in hola_spenser-0.0.4 vs lib/hola_spenser/translator.rb in hola_spenser-0.0.5
- old
+ new
@@ -3,12 +3,12 @@
@language = language
end
def hi
case @language
- when "spanish"
- "hola mundo"
+ when 'spanish'
+ 'hola mundo'
else
- "hello world"
+ 'hello world'
end
end
end