diff options
author | Tristan Sloughter <t@crashfast.com> | 2016-11-03 09:49:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-03 09:49:45 -0700 |
commit | 5335e574987bf43e0cf3abddf1f3f6ec68a1c134 (patch) | |
tree | f4ccc4ca6bb36220e2ae559147d06a6bcf933047 | |
parent | 7f8e1c8294f83911e247e438a948f12ae42c1fe2 (diff) | |
parent | 95844531946ab7eabe3bd40df7133b200b292646 (diff) |
Merge pull request #1371 from psyeugenic/egil/fix-usage-typo
Fix usage decription of 'rebar3'
-rw-r--r-- | src/rebar_prv_help.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_help.erl b/src/rebar_prv_help.erl index 75cc609..f34c755 100644 --- a/src/rebar_prv_help.erl +++ b/src/rebar_prv_help.erl @@ -57,7 +57,7 @@ format_error(Reason) -> help(State) -> ?CONSOLE("Rebar3 is a tool for working with Erlang projects.~n~n", []), OptSpecList = rebar3:global_option_spec_list(), - getopt:usage(OptSpecList, "rebar", "", []), + getopt:usage(OptSpecList, "rebar3", "", []), ?CONSOLE("~nSeveral tasks are available:~n", []), providers:help(rebar_state:providers(State)), |