Skip to content
This repository has been archived by the owner on Aug 15, 2018. It is now read-only.

Commit

Permalink
fixed a time_ago_in_words goof in comments list
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Adams committed Jan 30, 2009
1 parent a2a6304 commit 72db033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/shared/_comment.html.erb
Expand Up @@ -5,7 +5,7 @@
<div class='contents'>
<div class='supplemental'>
<cite><strong><%= comment.website.blank? ? comment.name : link_to(comment.name, comment.website) -%></cite></strong>
said <%= distance_of_time_in_words(Time.now, comment.created_at) %>
said <%= time_ago_in_words(comment.created_at) %>
</div>
<%= sanitize(comment.comments) %>
</div>
Expand Down

0 comments on commit 72db033

Please sign in to comment.