diff --git a/lib/stack.ex b/lib/stack.ex
index c97820c..c46b205 100644
--- a/lib/stack.ex
+++ b/lib/stack.ex
@@ -12,7 +12,7 @@ defmodule Stack do
to_string(rest, [str | acc])
end
def to_string([{module, fun, arity, _} | rest], acc) do
- str = "#{module |> Enum.join(".")}.#{fun}/#{arity}"
+ str = "#{module}.#{fun}/#{arity}"
to_string(rest, [str | acc])
end
def to_string([elt | rest], acc) do