diff options
author | Hans Bolinder <[email protected]> | 2016-05-19 08:59:45 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2016-06-09 11:28:00 +0200 |
commit | fb49e45402c0370c030ce3c128b08bccf960bf44 (patch) | |
tree | f287e8eb12c276f2412020ee7420f9c55cb96bc6 /lib/stdlib/src/erl_pp.erl | |
parent | 38cdb3b5131257a8cc76b8f64e32b8ecf722bdb4 (diff) | |
download | otp-fb49e45402c0370c030ce3c128b08bccf960bf44.tar.gz otp-fb49e45402c0370c030ce3c128b08bccf960bf44.tar.bz2 otp-fb49e45402c0370c030ce3c128b08bccf960bf44.zip |
stdlib: Correct types and specs
Diffstat (limited to 'lib/stdlib/src/erl_pp.erl')
-rw-r--r-- | lib/stdlib/src/erl_pp.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/src/erl_pp.erl b/lib/stdlib/src/erl_pp.erl index ca764675fc..71a3835b66 100644 --- a/lib/stdlib/src/erl_pp.erl +++ b/lib/stdlib/src/erl_pp.erl @@ -70,13 +70,13 @@ %%% -spec(form(Form) -> io_lib:chars() when - Form :: erl_parse:abstract_form()). + Form :: erl_parse:abstract_form() | erl_parse:form_info()). form(Thing) -> form(Thing, none). -spec(form(Form, Options) -> io_lib:chars() when - Form :: erl_parse:abstract_form(), + Form :: erl_parse:abstract_form() | erl_parse:form_info(), Options :: options()). form(Thing, Options) -> |