diff options
author | Péter Gömöri <[email protected]> | 2018-06-28 00:25:45 +0200 |
---|---|---|
committer | Péter Gömöri <[email protected]> | 2018-06-28 11:57:03 +0200 |
commit | 7789e572b7158e2958db20cf3b9c531f411f887b (patch) | |
tree | 31b5e81e0291fb1ac7d0e3275555599c662c80ec /lib | |
parent | 8b5466e857a1713b47523020a09e28563f590473 (diff) | |
download | otp-7789e572b7158e2958db20cf3b9c531f411f887b.tar.gz otp-7789e572b7158e2958db20cf3b9c531f411f887b.tar.bz2 otp-7789e572b7158e2958db20cf3b9c531f411f887b.zip |
Fix typo in erl_parse type unary_op()
Diffstat (limited to 'lib')
-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 3390cee8ae..9602f0bcd9 100644 --- a/lib/stdlib/src/erl_parse.yrl +++ b/lib/stdlib/src/erl_parse.yrl @@ -980,7 +980,7 @@ Erlang code. -type af_unary_op(T) :: {'op', anno(), unary_op(), T}. --type unary_op() :: '+' | '*' | 'bnot' | 'not'. +-type unary_op() :: '+' | '-' | 'bnot' | 'not'. %% See also lib/stdlib/{src/erl_bits.erl,include/erl_bits.hrl}. -type type_specifier_list() :: 'default' | [type_specifier(), ...]. |