From ebd50f8a69ff6e4dde1a8c8be376434b1cc7f6f1 Mon Sep 17 00:00:00 2001 From: Evgeny Khramtsov Date: Thu, 4 Oct 2018 14:31:41 +0300 Subject: [PATCH] Report available options in lexical order --- src/misc.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc.erl b/src/misc.erl index c415e9817..8bf7d43a6 100644 --- a/src/misc.erl +++ b/src/misc.erl @@ -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