Skip to content

Commit d3d0f85

Browse files
committed
fix write 'in typeassert, expected IOStream, got TTY' error
1 parent 87f4ea7 commit d3d0f85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/io.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ function repr(x)
400400
takebuf_string(s)
401401
end
402402

403-
write(x) = write(OUTPUT_STREAM::IOStream, x)
403+
write(x) = write(OUTPUT_STREAM::IO, x)
404404

405405
function readuntil(s::IOStream, delim::Uint8)
406406
ccall(:jl_readuntil, Array{Uint8,1}, (Ptr{Void}, Uint8), s.ios, delim)

0 commit comments

Comments
 (0)