diff options
Diffstat (limited to 'src/rebar_core.erl')
-rw-r--r-- | src/rebar_core.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_core.erl b/src/rebar_core.erl index a79414a..2396294 100644 --- a/src/rebar_core.erl +++ b/src/rebar_core.erl @@ -57,7 +57,7 @@ process_command(State, Command) -> end end. --spec do([atom()], rebar_state:t()) -> {ok, rebar_state:t()} | {error, string()}. +-spec do([{atom(), atom()}], rebar_state:t()) -> {ok, rebar_state:t()} | {error, string()}. do([], State) -> {ok, State}; do([{ProviderName, Profile} | Rest], State) -> |