aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2016-09-01 15:14:54 +0200
committerBjörn Gustavsson <[email protected]>2016-09-01 15:14:54 +0200
commit18d398f0908346dbf9f7e2c08f68759a05673d2f (patch)
treeebe2f18881517e7195540021d3bc37121ebb5bb5 /lib
parente3c5092e9e17982f56d3d137aebd5948eddcba41 (diff)
parentb4a93a0fc6d01cf2682652f7be16e020bdb10e3e (diff)
downloadotp-18d398f0908346dbf9f7e2c08f68759a05673d2f.tar.gz
otp-18d398f0908346dbf9f7e2c08f68759a05673d2f.tar.bz2
otp-18d398f0908346dbf9f7e2c08f68759a05673d2f.zip
Merge branch 'maint'
* maint: beam_lib: Correct type for the abstract code chunk
Diffstat (limited to 'lib')
-rw-r--r--lib/stdlib/src/beam_lib.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/beam_lib.erl b/lib/stdlib/src/beam_lib.erl
index fe9df601eb..d7ee5c1f5d 100644
--- a/lib/stdlib/src/beam_lib.erl
+++ b/lib/stdlib/src/beam_lib.erl
@@ -55,7 +55,7 @@
-type beam() :: module() | file:filename() | binary().
--type forms() :: [erl_parse:abstract_form()].
+-type forms() :: [erl_parse:abstract_form() | erl_parse:form_info()].
-type abst_code() :: {AbstVersion :: atom(), forms()} | 'no_abstract_code'.
-type dataB() :: binary().