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:
parent
9d77b9075f
commit
99607c37db
@ -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
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user