summaryrefslogtreecommitdiff
path: root/test/rebar_edoc_SUITE_data/bad/apps/bar1/src/bar1.erl
blob: 2700aefb43811862f40a548b7172084317ea9083 (plain)
1
2
3
4
5
6
7
8
9
-module(bar1).
-export([bar1/0]).
-export_type([barer1/0]).

-type barer1() :: string().

% @doc Bar1 bars the bar.
-spec bar1() -> barer1().
bar1() -> "Barer1".