diff --git a/lib/isn.ex b/lib/isn.ex index c9e62bb..a99f605 100644 --- a/lib/isn.ex +++ b/lib/isn.ex @@ -49,20 +49,20 @@ defmodule ISN do def encode(_opts) do quote do thing -> - [<> | thing] + [<> | thing] end end def decode(:copy) do quote do - <> -> + <> -> :binary.copy(thing) end end def decode(:reference) do quote do - <> -> + <> -> thing end end