diff options
author | Gabriel Halley <gabhalley@gmail.com> | 2015-10-09 11:47:13 -0400 |
---|---|---|
committer | Gabriel Halley <gabhalley@gmail.com> | 2015-10-09 11:47:13 -0400 |
commit | 7b4d529c5e0dd4b62cf91a90ec72fe40ecca86ec (patch) | |
tree | 64417c9a63844f253b7884a2d56acef26f9fd761 | |
parent | 6fce99b0ee62648c40b36751724ab3b74401f7d7 (diff) |
Fix puts typo
-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 |