diff --git a/README.md b/README.md index beea72d2..3bf37148 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,7 @@ limit scope. | Command | Description | |----------- |------------ | +| as | Higher-order provider to run multiple tasks in sequence as certain profiles | | compile | Build project | | clean | Remove project apps beam files | | ct | Run Common Test suites | diff --git a/src/rebar_prv_as.erl b/src/rebar_prv_as.erl index 1bd80cd1..1ad22ed4 100644 --- a/src/rebar_prv_as.erl +++ b/src/rebar_prv_as.erl @@ -25,9 +25,9 @@ init(State) -> {bare, false}, {deps, ?DEPS}, {example, "rebar3 as ,,... , , ..."}, - {short_desc, "Higher order provider for running multiple tasks in a sequence as a certain profile."}, + {short_desc, "Higher order provider for running multiple tasks in a sequence as a certain profiles."}, {desc, ""}, - {opts, [{profile, undefined, undefined, string, "Profile to run as."}]}])), + {opts, [{profile, undefined, undefined, string, "Profiles to run as."}]}])), {ok, State1}. -spec do(rebar_state:t()) -> {ok, rebar_state:t()} | {error, string()}.