Fix another whitespace problem.

This commit is contained in:
Miles Gould
2015-07-24 11:09:22 +01:00
parent e3738ca0c6
commit f970fc4db2

View File

@@ -2,7 +2,7 @@ module GardensHelper
def display_garden_description(garden)
if garden.description.nil?
"no description provided."
"no description provided."
else
truncate(garden.description, length: 130, separator: ' ', omission: '... ') { link_to "Read more", garden_path(garden) }
end