Skip to content

Commit

Permalink
Fix elli:stop/1's -spec
Browse files Browse the repository at this point in the history
  • Loading branch information
paulo-ferraz-oliveira committed Jul 27, 2023
1 parent 3ec3522 commit 1b542a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elli.erl
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ set_callback(S, Callback, CallbackArgs) ->
gen_server:call(S, {set_callback, Callback, CallbackArgs}).

%% @doc Stop `Server'.
-spec stop(Server :: atom()) -> {stop, normal, ok, state()}.
-spec stop(Server :: atom()) -> ok.
stop(S) ->
gen_server:call(S, stop).

Expand Down

0 comments on commit 1b542a5

Please sign in to comment.