Skip to content

Commit

Permalink
Theme: for various path helpers, use strings. Symbols confuse people.
Browse files Browse the repository at this point in the history
  • Loading branch information
parkr committed Sep 19, 2016
1 parent 74baeb8 commit 7309ecf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/jekyll/theme.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ def root
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
Expand Down

0 comments on commit 7309ecf

Please sign in to comment.