diff options
Diffstat (limited to 'src/rebar_resource.erl')
-rw-r--r-- | src/rebar_resource.erl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/rebar_resource.erl b/src/rebar_resource.erl index 04b8d73..ee7d2d3 100644 --- a/src/rebar_resource.erl +++ b/src/rebar_resource.erl @@ -4,17 +4,17 @@ -export([]). --export_types([resource/0 - ,type/0 - ,location/0 - ,ref/0]). +-export_type([resource/0 + ,type/0 + ,location/0 + ,ref/0]). -type resource() :: {type(), location(), ref()}. -type type() :: atom(). -type location() :: string(). -type ref() :: any(). --ifdef(have_callback_support). +-ifdef(no_callback_support). %% In the case where R14 or lower is being used to compile the system %% we need to export a behaviour info |