diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-09-21 09:19:38 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-09-21 09:19:38 -0500 |
commit | 6356112cbbb32b09dd2f94ea856c3cbd32b1c085 (patch) | |
tree | 3fee9bbb20d8217bd31f77b693faa27a50870fba /include | |
parent | c3f3f3aa69358a8e181bf8f8804e14ab4f60ddbe (diff) |
more dialyzer fun. no likey opaque types
Diffstat (limited to 'include')
-rw-r--r-- | include/rebar.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rebar.hrl b/include/rebar.hrl index 130182f..92fdbe9 100644 --- a/include/rebar.hrl +++ b/include/rebar.hrl @@ -19,7 +19,7 @@ deps :: [atom()], % The list of dependencies desc :: string(), % The description for the task short_desc :: string(), % A one line short description of the task - example :: string(), % An example of the task usage + example :: string() | undefined, % An example of the task usage opts :: list()}). % The list of options that the task requires/understands -define(DEFAULT_LIB_DIRS, ["apps", "libs", "."]). |