mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-24 17:29:28 +01:00
Report available options in lexical order
This commit is contained in:
parent
d8f831de09
commit
ebd50f8a69
@ -204,7 +204,7 @@ compile_exprs(Mod, Exprs) ->
|
||||
|
||||
-spec join_atoms([atom()], binary()) -> binary().
|
||||
join_atoms(Atoms, Sep) ->
|
||||
str:join([io_lib:format("~p", [A]) || A <- Atoms], Sep).
|
||||
str:join([io_lib:format("~p", [A]) || A <- lists:sort(Atoms)], Sep).
|
||||
|
||||
%% @doc Checks if the file is readable and converts its name to binary.
|
||||
%% Fails with `badarg` otherwise. The function is intended for usage
|
||||
|
Loading…
Reference in New Issue
Block a user