app/views/users/_comments.html.erb
<% @comments.each do |comment| %>
<div class="comment">
<small><b><%= time_ago_in_words(comment.created_at) %> ago, <a href="<%= user_path(comment.author) %>"><%= comment.author %></a> wrote:</b></small>
<p>"<%= raw comment.body %>"
<a href="/spectra/<%= comment.spectrum_id %>">Read more »</a></p>
</div>
<% end %>