diff options
author | Kostis Sagonas <[email protected]> | 2019-06-07 08:37:28 +0200 |
---|---|---|
committer | Kostis Sagonas <[email protected]> | 2019-06-07 08:37:28 +0200 |
commit | 4292d7b2b5f7c61e6d0c8da4d3e7829bda8ae53d (patch) | |
tree | 0ef77e1356177cb60e68a2487c18ccd7b3f51e86 | |
parent | fc1f0444e32b039194189af97fb3d5358a2b91e3 (diff) | |
download | otp-4292d7b2b5f7c61e6d0c8da4d3e7829bda8ae53d.tar.gz otp-4292d7b2b5f7c61e6d0c8da4d3e7829bda8ae53d.tar.bz2 otp-4292d7b2b5f7c61e6d0c8da4d3e7829bda8ae53d.zip |
cerl: Fix spelling error in a case of ctype()
-rw-r--r-- | lib/compiler/src/cerl.erl | 2 |
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'. |