Skip to content

Commit

Permalink
remove references to TCPSocket in Base docstrings (#26298)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson authored Mar 2, 2018
1 parent 8fff818 commit ce26ed0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions base/stream.jl
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,7 @@ the pipe. The `wr` end is given for convenience in case the old
elsewhere.
!!! note
`stream` must be a `TTY`, a `Pipe`, or a [`TCPSocket`](@ref).
`stream` must be a `TTY`, a `Pipe`, or a socket.
"""
redirect_stdout

Expand All @@ -961,7 +961,7 @@ redirect_stdout
Like [`redirect_stdout`](@ref), but for [`stderr`](@ref).
!!! note
`stream` must be a `TTY`, a `Pipe`, or a [`TCPSocket`](@ref).
`stream` must be a `TTY`, a `Pipe`, or a socket.
"""
redirect_stderr

Expand All @@ -973,7 +973,7 @@ Note that the order of the return tuple is still `(rd, wr)`,
i.e. data to be read from [`stdin`](@ref) may be written to `wr`.
!!! note
`stream` must be a `TTY`, a `Pipe`, or a [`TCPSocket`](@ref).
`stream` must be a `TTY`, a `Pipe`, or a socket.
"""
redirect_stdin

Expand All @@ -998,7 +998,7 @@ Run the function `f` while redirecting [`stdout`](@ref) to `stream`.
Upon completion, [`stdout`](@ref) is restored to its prior setting.
!!! note
`stream` must be a `TTY`, a `Pipe`, or a [`TCPSocket`](@ref).
`stream` must be a `TTY`, a `Pipe`, or a socket.
"""
redirect_stdout(f::Function, stream)

Expand All @@ -1009,7 +1009,7 @@ Run the function `f` while redirecting [`stderr`](@ref) to `stream`.
Upon completion, [`stderr`](@ref) is restored to its prior setting.
!!! note
`stream` must be a `TTY`, a `Pipe`, or a [`TCPSocket`](@ref).
`stream` must be a `TTY`, a `Pipe`, or a socket.
"""
redirect_stderr(f::Function, stream)

Expand All @@ -1020,7 +1020,7 @@ Run the function `f` while redirecting [`stdin`](@ref) to `stream`.
Upon completion, [`stdin`](@ref) is restored to its prior setting.
!!! note
`stream` must be a `TTY`, a `Pipe`, or a [`TCPSocket`](@ref).
`stream` must be a `TTY`, a `Pipe`, or a socket.
"""
redirect_stdin(f::Function, stream)

Expand Down

0 comments on commit ce26ed0

Please sign in to comment.