Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialReynaldo Reyes
295 Pointsprint ago
When add the + " ago " i get error saying undefined method `+@' for "ago":String
Reynaldo Reyes
295 Points<%= link_to time_ago_in_words(status.created_at), + "ago", status %>
--(edited for formatting -mod)
1 Answer
Seth Kroger
56,413 PointsThe commas are used to separate the different values in the line. You should leave out the comma after time_ago_in_words() if you want to add the word " ago" to it. (with a space before the word)
Reynaldo Reyes
295 PointsThank you Seth!
Seth Kroger
56,413 PointsSeth Kroger
56,413 PointsCould you post you're code? From the error I think you separated the two strings you're trying to combine on separate lines of code. They should be on the same line.