Merge pull request #471 from tuncer/formatting-fixes-2

Fix whitespace errors
This commit is contained in:
Fred Hebert 2015-04-02 10:27:11 -04:00
commit 99f8580678

View file

@ -309,9 +309,11 @@ collect_glob(Config, Cwd, Glob) ->
%% There is a directory named "deps" in path %% There is a directory named "deps" in path
Acc; Acc;
false -> false ->
[F | Acc] % No "deps" directory in path %% No "deps" directory in path
[F | Acc]
end end
end, []). end,
[]).
remove_common_prefix([H1|T1], [H1|T2]) -> remove_common_prefix([H1|T1], [H1|T2]) ->
remove_common_prefix(T1, T2); remove_common_prefix(T1, T2);