Skip to content

Commit

Permalink
erl_parse.yrl: Add missing operator in type declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
kostis authored and bjorng committed Apr 13, 2010
1 parent 0ca1793 commit d1e8737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/stdlib/src/erl_parse.yrl
Expand Up @@ -994,7 +994,7 @@ inop_prec('#') -> {800,700,800};
inop_prec(':') -> {900,800,900};
inop_prec('.') -> {900,900,1000}.

-type pre_op() :: 'catch' | '+' | '-' | 'bnot' | '#'.
-type pre_op() :: 'catch' | '+' | '-' | 'bnot' | 'not' | '#'.

-spec preop_prec(pre_op()) -> {0 | 600 | 700, 100 | 700 | 800}.

Expand Down

0 comments on commit d1e8737

Please sign in to comment.