summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuilherme Andrade <g@gandrade.net>2019-09-02 23:53:57 +0100
committerGuilherme Andrade <g@gandrade.net>2019-09-02 23:53:57 +0100
commitdf808931cc72348b5375e041e9b2821f660c1ef4 (patch)
treeeed9b619e2967d4aacd2ec63b16190795f27d0c2
parent0cb050e93be41afcc0f063d5110a73dcf8fcb176 (diff)
Fix function overspec.
-rw-r--r--src/rebar_dir.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_dir.erl b/src/rebar_dir.erl
index 6810640..07d8a2c 100644
--- a/src/rebar_dir.erl
+++ b/src/rebar_dir.erl
@@ -56,7 +56,7 @@ profile_dir(Opts, Profiles) ->
profile_dir_name(State) ->
profile_dir_name_(rebar_state:current_profiles(State)).
--spec profile_dir_name_([atom(), ...] | rebar_state:t()) -> file:filename_all().
+-spec profile_dir_name_([atom(), ...]) -> file:filename_all().
profile_dir_name_(Profiles)
when is_list(Profiles) ->
case [rebar_utils:to_list(P) || P <- Profiles] of