diff options
| author | Björn Gustavsson <[email protected]> | 2019-06-12 14:52:46 +0200 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2019-06-12 14:52:46 +0200 | 
| commit | c04646e4110029cd49534ed592454e3814812244 (patch) | |
| tree | 4d699998c0b95a87fe7de9df3d1ccab25b63e6c4 /lib/compiler/src | |
| parent | 81f318e9024321cf4a0e9cadb59fc25dbcc6a00d (diff) | |
| parent | 4292d7b2b5f7c61e6d0c8da4d3e7829bda8ae53d (diff) | |
| download | otp-c04646e4110029cd49534ed592454e3814812244.tar.gz otp-c04646e4110029cd49534ed592454e3814812244.tar.bz2 otp-c04646e4110029cd49534ed592454e3814812244.zip | |
Merge pull request #2274 from kostis/cerl-fix-ctype
cerl: Fix spelling error in a case of ctype()
Diffstat (limited to 'lib/compiler/src')
| -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'. | 
