aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src/cerl.erl
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2019-06-24 12:33:11 +0200
committerBjörn Gustavsson <[email protected]>2019-06-24 12:39:46 +0200
commita225a9d6ff5e2ded63b0f7ce6259bf188a803469 (patch)
tree47748846ea421c19d313542ca486fc1fe87ce4de /lib/compiler/src/cerl.erl
parent793f5a78d2adaaa7c20e890758a6616c63b47290 (diff)
downloadotp-a225a9d6ff5e2ded63b0f7ce6259bf188a803469.tar.gz
otp-a225a9d6ff5e2ded63b0f7ce6259bf188a803469.tar.bz2
otp-a225a9d6ff5e2ded63b0f7ce6259bf188a803469.zip
Eliminate dialyzer warnings
Eliminate the Dialyzer warnings shown when the limits in lib/cerl/erl_types.erl were raised as follows: -define(TUPLE_TAG_LIMIT, 10). -define(TUPLE_ARITY_LIMIT, 10). -define(SET_LIMIT, 64).
Diffstat (limited to 'lib/compiler/src/cerl.erl')
-rw-r--r--lib/compiler/src/cerl.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/src/cerl.erl b/lib/compiler/src/cerl.erl
index 62cd5b5120..bc28f58712 100644
--- a/lib/compiler/src/cerl.erl
+++ b/lib/compiler/src/cerl.erl
@@ -263,7 +263,7 @@
%% @see subtrees/1
%% @see meta/1
--type ctype() :: 'alias' | 'apply' | 'binary' | 'bitrst' | 'call' | 'case'
+-type ctype() :: 'alias' | 'apply' | 'binary' | 'bitstr' | 'call' | 'case'
| 'catch' | 'clause' | 'cons' | 'fun' | 'let' | 'letrec'
| 'literal' | 'map' | 'map_pair' | 'module' | 'primop'
| 'receive' | 'seq' | 'try' | 'tuple' | 'values' | 'var'.