aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler
diff options
context:
space:
mode:
authorKostis Sagonas <[email protected]>2019-06-07 08:37:28 +0200
committerKostis Sagonas <[email protected]>2019-06-07 08:37:28 +0200
commit4292d7b2b5f7c61e6d0c8da4d3e7829bda8ae53d (patch)
tree0ef77e1356177cb60e68a2487c18ccd7b3f51e86 /lib/compiler
parentfc1f0444e32b039194189af97fb3d5358a2b91e3 (diff)
downloadotp-4292d7b2b5f7c61e6d0c8da4d3e7829bda8ae53d.tar.gz
otp-4292d7b2b5f7c61e6d0c8da4d3e7829bda8ae53d.tar.bz2
otp-4292d7b2b5f7c61e6d0c8da4d3e7829bda8ae53d.zip
cerl: Fix spelling error in a case of ctype()
Diffstat (limited to 'lib/compiler')
-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'.