From bcacbef00b3f85f9f1bd57b16ae2085ecbc51eb0 Mon Sep 17 00:00:00 2001 From: Joseph Wayne Norton Date: Sat, 15 Oct 2011 23:19:33 +0900 Subject: [PATCH] Fix source_path typo --- make_doc | 2 +- rebar.config | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/make_doc b/make_doc index c485932..f130c37 100755 --- a/make_doc +++ b/make_doc @@ -10,7 +10,7 @@ main([]) -> code:add_patha("ebin"), R = edoc:application(edown, ".", [{doclet, edown_doclet}, - {src_path, ["src"]}, + {source_path, ["src"]}, {app_default,"http://www.erlang.org/doc/man"}, {stylesheet, ""}, % don't copy stylesheet.css {image, ""}, % don't copy erlang.png diff --git a/rebar.config b/rebar.config index 70f2eee..a5268b8 100644 --- a/rebar.config +++ b/rebar.config @@ -10,7 +10,7 @@ %% This is a reasonable set of options to use for edown, but edown %% doesn't actually use rebar to make its own docs. %% {edoc_opts, [{doclet, edown_doclet}, -%% {src_path, ["src", "test"]}, +%% {source_path, ["src", "test"]}, %% {stylesheet, ""}, %% {image, ""}, %% {app_default,"http://www.erlang.org/doc/man"}]}.