Skip to content

Commit

Permalink
Merge pull request #113 from paulo-ferraz-oliveira/fix/spec
Browse files Browse the repository at this point in the history
Fix spec for elli:stop/1
  • Loading branch information
tsloughter authored Jun 29, 2024
2 parents 8e94eec + bda6af9 commit 3600345
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 @@ -107,7 +107,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 3600345

Please sign in to comment.