Skip to content

Commit

Permalink
Fix fetch_result type definition (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
mworrell authored Sep 25, 2024
1 parent aeea489 commit d661f17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/z_url_fetch.erl
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
-type fetch_result() :: {ok, {
FinalUrl :: string(),
RespHeaders :: list({string(), string()}),
ContentLength :: pos_integer(),
ContentLength :: non_neg_integer(),
Content :: binary()
}}
| {error, Reason :: term()}.
Expand Down

0 comments on commit d661f17

Please sign in to comment.