diff options
author | Hans Bolinder <[email protected]> | 2016-01-20 12:13:42 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2016-01-20 12:13:42 +0100 |
commit | c45652ee1b43ba4501651182a6d3c9f4789c3429 (patch) | |
tree | ea6ea04c20aa2d9fd44fa783edb8bae654815d76 /lib/dialyzer | |
parent | f9f2bfcc846f1711a712947c87eb5e690900483a (diff) | |
parent | 6e2d941bf278191c11f6d1cebdfab5e51419d734 (diff) | |
download | otp-c45652ee1b43ba4501651182a6d3c9f4789c3429.tar.gz otp-c45652ee1b43ba4501651182a6d3c9f4789c3429.tar.bz2 otp-c45652ee1b43ba4501651182a6d3c9f4789c3429.zip |
Merge branch 'hb/stdlib/refine_abstr_types/OTP-10292'
* hb/stdlib/refine_abstr_types/OTP-10292:
erts: Improve readability of The Abstract Format
erts: Improve the documentation of the abstract format
stdlib: Update erl_parse(3)
stdlib: Refine the types of the abstract format
compiler: Improve type and specs
hipe: Improve types
dialyzer: Improve a type
doc: Update a refman example
syntax_tools: Correct a type
stdlib: Correct a type
Diffstat (limited to 'lib/dialyzer')
-rw-r--r-- | lib/dialyzer/src/dialyzer_utils.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dialyzer/src/dialyzer_utils.erl b/lib/dialyzer/src/dialyzer_utils.erl index 7fe982a992..557e10eed7 100644 --- a/lib/dialyzer/src/dialyzer_utils.erl +++ b/lib/dialyzer/src/dialyzer_utils.erl @@ -83,7 +83,7 @@ print_types1([{record, _Name} = Key|T], RecDict) -> %% ---------------------------------------------------------------------------- --type abstract_code() :: [tuple()]. %% XXX: import from somewhere +-type abstract_code() :: [erl_parse:abstract_form()]. -type comp_options() :: [compile:option()]. -type mod_or_fname() :: module() | file:filename(). -type fa() :: {atom(), arity()}. |