diff options
author | Jordan Wilberding <[email protected]> | 2013-09-16 10:30:15 -0700 |
---|---|---|
committer | Jordan Wilberding <[email protected]> | 2013-09-16 10:30:15 -0700 |
commit | 47d157ee780c9c8fde1fc66ebc769ac7c10f0521 (patch) | |
tree | 533ba1b9ee980a664aaad19e3b6c6d15176a4cce /src/rlx_dscv_util.erl | |
parent | 55f0f5aa4c25d21171113a75f91a37d12a4c78ee (diff) | |
parent | 26d1d19cc204d3ba63037b703f1b040a960d9725 (diff) | |
download | relx-0.2.0.tar.gz relx-0.2.0.tar.bz2 relx-0.2.0.zip |
Misc fixes, log improvements and README improvements
Diffstat (limited to 'src/rlx_dscv_util.erl')
-rw-r--r-- | src/rlx_dscv_util.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rlx_dscv_util.erl b/src/rlx_dscv_util.erl index 3d90b08..779534c 100644 --- a/src/rlx_dscv_util.erl +++ b/src/rlx_dscv_util.erl @@ -33,7 +33,7 @@ %% Types %%============================================================================ --type process_fun(Result) :: fun((filename:name(), file | directory) -> +-type process_fun(Result) :: fun((file:name(), file | directory) -> {ok, Result} | {error, term()} | {ok, Result, Recurse::boolean()} | @@ -46,7 +46,7 @@ %% @doc recursively dig down into the library directories specified in the state %% looking for OTP Applications --spec do(process_fun([term()] | term()), [filename:name()]) -> +-spec do(process_fun([term()] | term()), [file:name()]) -> [term() | {error, term()}]. do(ProcessDir, LibDirs) -> lists:flatten(ec_plists:map(fun(LibDir) -> |