diff options
author | Hans Bolinder <[email protected]> | 2018-06-29 08:31:55 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2018-06-29 08:31:55 +0200 |
commit | 6ab78c27ed7e8244fcaafd8c2706024ca707465c (patch) | |
tree | e41f6e01aaff86fc330e14edf33537ad93420252 /lib | |
parent | 605723f25fdb8c084fe2b6b4a52294946d82a6d0 (diff) | |
parent | 7789e572b7158e2958db20cf3b9c531f411f887b (diff) | |
download | otp-6ab78c27ed7e8244fcaafd8c2706024ca707465c.tar.gz otp-6ab78c27ed7e8244fcaafd8c2706024ca707465c.tar.bz2 otp-6ab78c27ed7e8244fcaafd8c2706024ca707465c.zip |
Merge pull request #1853 from gomoripeti/fix_type_unary_op
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(), ...]. |