From 99607c37db3c685cb4a96e6cef5ca8d32df16b00 Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Fri, 29 Jul 2016 15:44:07 -0500 Subject: [PATCH] Fix some hound complaints --- _plugins/categories.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/_plugins/categories.rb b/_plugins/categories.rb index 69e437a..9f5eaaf 100644 --- a/_plugins/categories.rb +++ b/_plugins/categories.rb @@ -1,6 +1,5 @@ module Jekyll module Filters - # Outputs a list of categories as comma-separated links. This is used # to output the category list for each post on a category page. # @@ -9,7 +8,7 @@ module Jekyll # Returns string # def category_list(categories) - categories.sort.join(', ') + categories.sort.join(", ") end end end