diff options
author | Péter Gömöri <[email protected]> | 2018-12-28 21:16:24 +0100 |
---|---|---|
committer | Péter Gömöri <[email protected]> | 2018-12-28 21:16:24 +0100 |
commit | d05d5b5c680f486557936d81c91c060834275b8a (patch) | |
tree | af74c6d0c7adb7dcf0ce263719d56b0a381fc19f /lib/stdlib | |
parent | 4c3418d26b8bb209aa46a2debd12e9f406738947 (diff) | |
download | otp-d05d5b5c680f486557936d81c91c060834275b8a.tar.gz otp-d05d5b5c680f486557936d81c91c060834275b8a.tar.bz2 otp-d05d5b5c680f486557936d81c91c060834275b8a.zip |
Fix erl_parse:af_fun_type()
`af_function_type()` already contains the `{'type', anno(), 'fun', ...}`
tuple so it does not have to be wrapped again.
Diffstat (limited to 'lib/stdlib')
-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 5880eb4536..760a49ed32 100644 --- a/lib/stdlib/src/erl_parse.yrl +++ b/lib/stdlib/src/erl_parse.yrl @@ -872,7 +872,7 @@ Erlang code. -type af_fun_type() :: {'type', anno(), 'fun', []} | {'type', anno(), 'fun', [{'type', anno(), 'any'} | abstract_type()]} - | {'type', anno(), 'fun', af_function_type()}. + | af_function_type(). -type af_integer_range_type() :: {'type', anno(), 'range', [af_singleton_integer_type()]}. |