diff --git a/lib/absinthe/pipeline.ex b/lib/absinthe/pipeline.ex index 8076d62d43..a5dab4b7af 100644 --- a/lib/absinthe/pipeline.ex +++ b/lib/absinthe/pipeline.ex @@ -17,7 +17,9 @@ defmodule Absinthe.Pipeline do @type data_t :: any - @type run_result_t :: {:ok, data_t, [Phase.t()]} | {:error, String.t() | {:http_method, String.t()}, [Phase.t()]} + @type run_result_t :: + {:ok, data_t, [Phase.t()]} + | {:error, String.t() | {:http_method, String.t()}, [Phase.t()]} @type phase_config_t :: Phase.t() | {Phase.t(), Keyword.t()}