Remove superfluous space in unabbrev error msg
Project: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/commit/b6634775 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/tree/b6634775 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/diff/b6634775 Branch: refs/heads/master Commit: b6634775f7561ee8bf31395ed5b0cae76f7c707c Parents: 2429ddf Author: Tuncer Ayaz <tuncer.a...@gmail.com> Authored: Fri Sep 16 22:13:10 2016 +0200 Committer: Tuncer Ayaz <tuncer.a...@gmail.com> Committed: Fri Sep 16 22:13:10 2016 +0200 ---------------------------------------------------------------------- src/rebar.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-rebar/blob/b6634775/src/rebar.erl ---------------------------------------------------------------------- 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, ", ")])