diff options
author | Viktor Söderqvist <[email protected]> | 2018-12-22 12:10:03 +0100 |
---|---|---|
committer | Viktor Söderqvist <[email protected]> | 2018-12-22 12:10:03 +0100 |
commit | 1a37de22f823c55d7f77f152580f4c041ff89024 (patch) | |
tree | b9cf5bea93c914dbf66bff6b0a6cc6fd52324793 /lib/stdlib/src | |
parent | 6d39c458fbd0b573e8e752121d8cd388e0426917 (diff) | |
download | otp-1a37de22f823c55d7f77f152580f4c041ff89024.tar.gz otp-1a37de22f823c55d7f77f152580f4c041ff89024.tar.bz2 otp-1a37de22f823c55d7f77f152580f4c041ff89024.zip |
Correction of type abstract_expr -> abstract_expr() in erl_parse
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r-- | lib/stdlib/src/erl_parse.yrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/erl_parse.yrl b/lib/stdlib/src/erl_parse.yrl index 9602f0bcd9..824a5dd3ce 100644 --- a/lib/stdlib/src/erl_parse.yrl +++ b/lib/stdlib/src/erl_parse.yrl @@ -841,7 +841,7 @@ Erlang code. -type af_record_field(T) :: {'record_field', anno(), af_field_name(), T}. -type af_map_pattern() :: - {'map', anno(), [af_assoc_exact(abstract_expr)]}. + {'map', anno(), [af_assoc_exact(abstract_expr())]}. -type abstract_type() :: af_annotated_type() | af_atom() |