aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2015-12-11 12:04:56 +0100
committerHans Bolinder <[email protected]>2016-01-20 10:06:09 +0100
commitf1e687312daa91591a2cee5038a2d9434e7db209 (patch)
treecee5a04c0fb5b25edfa5200ece252fb4ea8e25ea /lib
parentac6cf5d0b931e8fdb65bd43a9bc241e525517357 (diff)
downloadotp-f1e687312daa91591a2cee5038a2d9434e7db209.tar.gz
otp-f1e687312daa91591a2cee5038a2d9434e7db209.tar.bz2
otp-f1e687312daa91591a2cee5038a2d9434e7db209.zip
stdlib: Correct a type
Diffstat (limited to 'lib')
-rw-r--r--lib/stdlib/src/io.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/io.erl b/lib/stdlib/src/io.erl
index 5dc8b4541e..f510f61e9f 100644
--- a/lib/stdlib/src/io.erl
+++ b/lib/stdlib/src/io.erl
@@ -444,7 +444,7 @@ scan_erl_form(Io, Prompt, Pos0, Options) ->
%% Parsing Erlang code.
-type parse_ret() :: {'ok',
- ExprList :: erl_parse:abstract_expr(),
+ ExprList :: [erl_parse:abstract_expr()],
EndLocation :: location()}
| {'eof', EndLocation :: location()}
| {'error',