Skip to content

Commit

Permalink
correcting brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
gorn committed Nov 20, 2014
1 parent 8c24615 commit efff0db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ sheet.rows(5).cells.sum{ |cell| cell.value }

total = 0
sheet.rows.each do |row|
puts "Sponsor #{row[1]} with email #{row(2)} has donated #{row(3)} USD."
puts "Sponsor #{row[1]} with email #{row[2]} has donated #{row[3]} USD."
total += row[3]
end
puts "Totally fundraised #{total} USD"
Expand Down

0 comments on commit efff0db

Please sign in to comment.