Skip to content

Commit

Permalink
Fix as per OTP 26 constraints
Browse files Browse the repository at this point in the history
dialyzer is `unknown` by default now
  • Loading branch information
paulo-ferraz-oliveira committed Aug 2, 2023
1 parent 1b542a5 commit a6d89e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/elli_example_callback.erl
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ chunk_loop(Ref, N) ->
%% `file_error' is sent when the user wants to return a file as a
%% response, but for some reason it cannot be opened.
-spec handle_event(Event, Args, Config) -> ok when
Event :: elli:event(),
Event :: elli_handler:event(),
Args :: elli_handler:callback_args(),
Config :: [tuple()].
handle_event(elli_startup, [], _) -> ok;
Expand Down
2 changes: 1 addition & 1 deletion src/elli_middleware.erl
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ handle_event(Event, Args, Config) ->

-spec do_init(Req, Callbacks) -> {ok, standard | handover} when
Req :: elli:req(),
Callbacks :: elli_handler:callbacks().
Callbacks :: [elli_handler:callback()].
do_init(_, []) ->
{ok, standard};
do_init(Req, [{Mod, Args}|Mods]) ->
Expand Down

0 comments on commit a6d89e3

Please sign in to comment.