Skip to content

Commit

Permalink
Add naming to the params to make them easier to read
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Arentsen committed Sep 7, 2017
1 parent eefa740 commit d5a90e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/liquid/file_system.ex
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
defmodule Liquid.BlankFileSystem do
def read_template_file(_, _, _) do
def read_template_file(_root, _name, _context) do
{ :error, "This liquid context does not allow includes." }
end
end

defmodule Liquid.LocalFileSystem do
def read_template_file(_, _, _) do
def read_template_file(_root, _name, _context) do
{ :ok, "" }
end

Expand Down

0 comments on commit d5a90e2

Please sign in to comment.