DEV Community

Discussion on: Mastering Ruby Arrays

Collapse
 
tax79 profile image
tax79 • Edited

There is a mistake:

fruits.each do { |fruit| puts fruit }
Enter fullscreen mode Exit fullscreen mode

Should be

fruits.each { |fruit| puts fruit }
Enter fullscreen mode Exit fullscreen mode

Same on this page:
dev.to/ericchapman/my-beloved-ruby...