whitespace tab/space correction

This commit is contained in:
Mackenzie Morgan
2015-07-23 13:56:23 -04:00
parent b0d4f9c731
commit e3738ca0c6

View File

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