Fix puts typo

This commit is contained in:
Gabriel Halley 2015-10-09 11:47:13 -04:00
parent 6fce99b0ee
commit 7b4d529c5e

View File

@ -265,7 +265,7 @@ end
# If you still need and index you can use "each_with_index" and define an index
# variable
array.each_with_index do |element, index|
pust "#{element} is number #{index} in the array"
puts "#{element} is number #{index} in the array"
end
counter = 1