diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2017-07-17 17:38:28 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-17 17:38:28 -0400 |
commit | aa9150b5b5e4afc547e391a9e7e7fc3bc0616da4 (patch) | |
tree | 12b02524f8f4894fe0a8973634e4dce85495cc1a | |
parent | dee97b11845e00baa1acff92086627662ed8ff42 (diff) | |
parent | f62b7cb32e93fa1f2b30c649e25f555c1b216c75 (diff) |
Merge pull request #1590 from VHTx/edoc_config_error_#149002995
Edoc config error
-rw-r--r-- | src/rebar_prv_edoc.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_edoc.erl b/src/rebar_prv_edoc.erl index 97f70a9..d663b0c 100644 --- a/src/rebar_prv_edoc.erl +++ b/src/rebar_prv_edoc.erl @@ -89,4 +89,4 @@ add_to_paths([], Path) -> add_to_paths([{doc_path, Paths}|T], Path) -> [{doc_path, [Path | Paths]} | T]; add_to_paths([H|T], Path) -> - [H | add_to_paths(Path, T)]. + [H | add_to_paths(T, Path)]. |