Skip to content

Commit 33e9f12

Browse files
committed
chore: Fix format.
1 parent 9290fab commit 33e9f12

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/http/promise.ex

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ defmodule HTTP.Promise do
2222
- `{:error, reason}` if the request fails or is aborted.
2323
- `{:error, :timeout}` if the timeout is reached.
2424
"""
25-
@spec await(t(), timeout :: non_neg_integer() | :infinity) :: HTTP.Response.t() | {:error, term()}
25+
@spec await(t(), timeout :: non_neg_integer() | :infinity) ::
26+
HTTP.Response.t() | {:error, term()}
2627
def await(%__MODULE__{task: task}, timeout \\ :infinity) do
2728
Task.await(task, timeout)
2829
end

0 commit comments

Comments
 (0)