summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFred Hebert <mononcqc@ferd.ca>2019-05-14 08:20:06 -0400
committerFred Hebert <mononcqc@ferd.ca>2019-05-14 08:20:06 -0400
commit725c900219574c6d9055fde8cc4f773a7be14866 (patch)
treefb5a04d10b06ded73d1e55518476de3efad68c25 /src
parent3a16cf3763c198e9167ec11a146e25334adc82f5 (diff)
Make test suite pass on OTP-22
- fix some bad typespec - bump the meck version for good fortune
Diffstat (limited to 'src')
-rw-r--r--src/rebar_utils.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_utils.erl b/src/rebar_utils.erl
index c920e46..6e5e934 100644
--- a/src/rebar_utils.erl
+++ b/src/rebar_utils.erl
@@ -972,7 +972,7 @@ get_proxy_auth() ->
{ok, ProxyAuth} -> ProxyAuth
end.
--spec rebar_utils:is_list_of_strings(term()) -> boolean().
+-spec is_list_of_strings(term()) -> boolean().
is_list_of_strings(List) when not is_list(hd(List)) ->
false;
is_list_of_strings(List) when is_list(hd(List)) ->