From 110f55affe28713f0208cf73cdcc22351f81b704 Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Mon, 2 May 2022 01:03:44 +0800 Subject: [PATCH] Update code example for rebar3_ex_doc (#310) Tally with the example with v0.2.9 release. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0ab5eae1..701ec093 100644 --- a/README.md +++ b/README.md @@ -35,9 +35,9 @@ Example : ```erlang {ex_doc, [ - {source_url, <<"https://github.com/namespace/your_app">>}, - {extras, [<<"README.md">>, <<"LICENSE">>]}, - {main, <<"readme">>} + {extras, ["README.md", "LICENSE"]}, + {main, "README.md"}, + {source_url, "https://github.com/namespace/your_app"} ]}. {hex, [{doc, ex_doc}]}.