summaryrefslogtreecommitdiffhomepage
path: root/ruby.html.markdown
diff options
context:
space:
mode:
authorGabriel Halley <gabhalley@gmail.com>2015-10-09 11:47:13 -0400
committerGabriel Halley <gabhalley@gmail.com>2015-10-09 11:47:13 -0400
commit7b4d529c5e0dd4b62cf91a90ec72fe40ecca86ec (patch)
tree64417c9a63844f253b7884a2d56acef26f9fd761 /ruby.html.markdown
parent6fce99b0ee62648c40b36751724ab3b74401f7d7 (diff)
Fix puts typo
Diffstat (limited to 'ruby.html.markdown')
-rw-r--r--ruby.html.markdown2
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