diff options
author | Hans Bolinder <[email protected]> | 2018-06-29 09:20:06 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2018-06-29 09:20:06 +0200 |
commit | 7d22caeed3b266336c7e35f06595173247b44b66 (patch) | |
tree | f66cc51674f703eee902139d6c64a5b8d39a6949 /lib/stdlib | |
parent | 70b46d747da49f3e94b54e47f403fd4d74c77d6b (diff) | |
parent | 6ab78c27ed7e8244fcaafd8c2706024ca707465c (diff) | |
download | otp-7d22caeed3b266336c7e35f06595173247b44b66.tar.gz otp-7d22caeed3b266336c7e35f06595173247b44b66.tar.bz2 otp-7d22caeed3b266336c7e35f06595173247b44b66.zip |
Merge branch 'maint'
* maint:
Fix typo in erl_parse type unary_op()
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 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(), ...]. |