From a9c8f7b106243a05538c17a0d82b5a4328744518 Mon Sep 17 00:00:00 2001 From: Bernard Duggan Date: Wed, 1 May 2024 15:07:11 +1000 Subject: [PATCH] Fix formatting --- lib/absinthe/pipeline.ex | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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()}