Skip to content

Commit

Permalink
Fix broken type in rest.erl.eex
Browse files Browse the repository at this point in the history
  • Loading branch information
onno-vos-dev committed Mar 12, 2024
1 parent 92118ae commit 602a877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion priv/rest.erl.eex
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
%% Internal functions
%%====================================================================

-spec proplists_take(any(), proplists:proplists(), any()) -> {any(), proplists:proplists()}.
-spec proplists_take(any(), proplists:proplist(), any()) -> {any(), proplists:proplist()}.
proplists_take(Key, Proplist, Default) ->
Value = proplists:get_value(Key, Proplist, Default),
{Value, proplists:delete(Key, Proplist)}.
Expand Down

0 comments on commit 602a877

Please sign in to comment.