diff options
author | Tino Breddin <t@tolbrino.com> | 2019-04-16 11:52:47 +0200 |
---|---|---|
committer | Tino Breddin <t@tolbrino.com> | 2019-04-16 21:22:12 +0200 |
commit | 33e4c8a079aab17454ed9caad0cb6fd9b1fa92b1 (patch) | |
tree | 09357ccf00165e4cda5dc875030d34c58912c8c4 /test/rebar_edoc_SUITE_data/bad/apps/foo/src/foo.erl | |
parent | 14928247cda69d953e673ed6b5feb6ff679a2dfc (diff) |
Fix duplicate module naming in edoc test suite data
Diffstat (limited to 'test/rebar_edoc_SUITE_data/bad/apps/foo/src/foo.erl')
-rw-r--r-- | test/rebar_edoc_SUITE_data/bad/apps/foo/src/foo.erl | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/test/rebar_edoc_SUITE_data/bad/apps/foo/src/foo.erl b/test/rebar_edoc_SUITE_data/bad/apps/foo/src/foo.erl deleted file mode 100644 index 52e3d0a..0000000 --- a/test/rebar_edoc_SUITE_data/bad/apps/foo/src/foo.erl +++ /dev/null @@ -1,19 +0,0 @@ --module(foo).
-
--export([foo/0, bar1/0, bar2/0]).
-
--export_type([fooer/0]).
-
--type fooer() :: string().
-
-% @doc Foo function returns fooer.
--spec foo() -> fooer().
-foo() -> "fooer".
-
-% @doc Bar1 function returns barer1.
--spec bar1() -> bar1:barer1().
-bar1() -> bar1:bar1().
-
-% @doc Bar2 functions returns barer2.
--spec bar2() -> bar2:barer2().
-bar2() -> bar2:bar2().
\ No newline at end of file |