ClevelandOnRails / rubyonrailsbook

Learn Ruby on Rails. Use coupon code GITHUB2013 on LeanPub for a discount!
https://leanpub.com/Ruby-on-Rails-The-little-Gem-that-Could
Other
9 stars 2 forks source link

Duplicating comments for the win #52

Closed jrgifford closed 11 years ago

jrgifford commented 11 years ago
<% @article.comments.each do |comment| %>
  <p>
  <strong>Commenter:</strong>
    <%= comment.commenter %>
  </p>
  <p>
  <strong>Comment:</strong>
  <%= comment.body %>
  </p>
<% end %>

should be

  <p>
  <strong>Commenter:</strong>
    <%= comment.commenter %>
  </p>
  <p>
  <strong>Comment:</strong>
  <%= comment.body %>
  </p>
esnowrackley commented 11 years ago

Fixes