diff options
author | Hans Bolinder <[email protected]> | 2011-09-02 08:40:55 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2011-09-02 08:40:55 +0200 |
commit | bb94e589c8495caf7c1fa6ebe808f6983ceaf44a (patch) | |
tree | 8a8cace285944209a52464eb8a2ecd7384094f8e /lib/stdlib/src/io_lib.erl | |
parent | 8811898efa3862fbb32f5c7cd7eff3535084bea7 (diff) | |
parent | ca7d2d43a839ab284104edea4663ada52d2c3e23 (diff) | |
download | otp-bb94e589c8495caf7c1fa6ebe808f6983ceaf44a.tar.gz otp-bb94e589c8495caf7c1fa6ebe808f6983ceaf44a.tar.bz2 otp-bb94e589c8495caf7c1fa6ebe808f6983ceaf44a.zip |
Merge branch 'hb/spec_improvements/OTP-9485' into dev
* hb/spec_improvements/OTP-9485:
Improve and correct types and specifications in Kernel and STDLIB
Diffstat (limited to 'lib/stdlib/src/io_lib.erl')
-rw-r--r-- | lib/stdlib/src/io_lib.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/src/io_lib.erl b/lib/stdlib/src/io_lib.erl index 165e03e506..0252cdf742 100644 --- a/lib/stdlib/src/io_lib.erl +++ b/lib/stdlib/src/io_lib.erl @@ -109,9 +109,9 @@ fwrite(Format, Args) -> fread(Chars, Format) -> io_lib_fread:fread(Chars, Format). --spec fread(Continuation, String, Format) -> Return when +-spec fread(Continuation, CharSpec, Format) -> Return when Continuation :: continuation() | [], - String :: string(), + CharSpec :: string() | eof, Format :: string(), Return :: {'more', Continuation1 :: continuation()} | {'done', Result, LeftOverChars :: string()}, |