diff options
| -rw-r--r-- | ruby.html.markdown | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ruby.html.markdown b/ruby.html.markdown index bd1497ce..88efe322 100644 --- a/ruby.html.markdown +++ b/ruby.html.markdown @@ -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 | 
