1
0
mirror of https://github.com/danbee/danbarber.me synced 2025-03-04 08:59:10 +00:00

Fix some hound complaints

This commit is contained in:
Daniel Barber 2016-07-29 15:44:07 -05:00
parent 9d77b9075f
commit 99607c37db
Signed by: danbarber
GPG Key ID: 931D8112E0103DD8

View File

@ -1,6 +1,5 @@
module Jekyll module Jekyll
module Filters module Filters
# Outputs a list of categories as comma-separated <a> links. This is used # Outputs a list of categories as comma-separated <a> links. This is used
# to output the category list for each post on a category page. # to output the category list for each post on a category page.
# #
@ -9,7 +8,7 @@ module Jekyll
# Returns string # Returns string
# #
def category_list(categories) def category_list(categories)
categories.sort.join(', ') categories.sort.join(", ")
end end
end end
end end