Make private functions private

This commit is contained in:
Felipe Sere
2016-03-20 19:36:57 +00:00
parent 994579f497
commit f564927751
2 changed files with 5 additions and 5 deletions

View File

@@ -41,7 +41,7 @@ defmodule Koans do
end
end
def create_vars(amount) do
defp create_vars(amount) do
Enum.map(0..amount, fn (idx) -> quote do: elem(converted, unquote(idx)) end)
end