summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Rascão <luis.rascao@gmail.com>2016-09-16 22:53:00 +0100
committerGitHub <noreply@github.com>2016-09-16 22:53:00 +0100
commit0d6b671cf3354c357bee7f7cc082ad2feb1edfc5 (patch)
tree49481f6ca6ca0c107dcb3895910ac0ed14a9246d
parent2429ddf7b46597222b0eaf6b79a438baafaaa96f (diff)
parentb6634775f7561ee8bf31395ed5b0cae76f7c707c (diff)
downloadrebar-0d6b671cf3354c357bee7f7cc082ad2feb1edfc5.tar.gz
Merge pull request #624 from tuncer/superfluous-space
Remove superfluous space in unabbrev error msg
-rw-r--r--src/rebar.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar.erl b/src/rebar.erl
index 2eb608d..6f78fe6 100644
--- a/src/rebar.erl
+++ b/src/rebar.erl
@@ -593,7 +593,7 @@ unabbreviate_command_names([Command | Commands]) ->
[FullCommand] ->
[FullCommand | unabbreviate_command_names(Commands)];
Candidates ->
- ?ABORT("Found more than one match for abbreviated command name "
+ ?ABORT("Found more than one match for abbreviated command name"
" '~s',~nplease be more specific. Possible candidates:~n"
" ~s~n",
[Command, string:join(Candidates, ", ")])