From 7309ecf8e188ee1a329a9b260b2a6678a54d8c38 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Mon, 19 Sep 2016 13:47:51 -0700 Subject: [PATCH] Theme: for various path helpers, use strings. Symbols confuse people. --- lib/jekyll/theme.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/jekyll/theme.rb b/lib/jekyll/theme.rb index 4b0eb2db..803004f3 100644 --- a/lib/jekyll/theme.rb +++ b/lib/jekyll/theme.rb @@ -18,19 +18,19 @@ module Jekyll end def includes_path - path_for :_includes + path_for "_includes".freeze end def layouts_path - path_for :_layouts + path_for "_layouts".freeze end def sass_path - path_for :_sass + path_for "_sass".freeze end def assets_path - path_for :assets + path_for "assets".freeze end def configure_sass