diff --git a/lib/nimble_parsec.ex b/lib/nimble_parsec.ex index 1bb2ee5..27e22d6 100644 --- a/lib/nimble_parsec.ex +++ b/lib/nimble_parsec.ex @@ -1804,7 +1804,7 @@ defmodule NimbleParsec do @spec bytes(pos_integer) :: t @spec bytes(t, pos_integer) :: t def bytes(combinator \\ empty(), count) - when is_combinator(combinator) and is_integer(count) and count > 0 do + when is_combinator(combinator) and is_integer(count) and count > 0 do [{:bytes, count} | combinator] end