Skip to content

Commit

Permalink
improve docstrings for startwrite et all
Browse files Browse the repository at this point in the history
  • Loading branch information
samoconnor committed Jan 19, 2018
1 parent 654bf2d commit 1a3c756
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/IOExtras.jl
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ end



"""
start_close_read_write_doc = """
startwrite(::IO)
closewrite(::IO)
startread(::IO)
Expand All @@ -85,10 +85,10 @@ end
Signal start/end of write or read operations.
"""

startwrite(io) = nothing
closewrite(io) = nothing
startread(io) = nothing
closeread(io) = nothing
@doc start_close_read_write_doc -> startwrite(io) = nothing
@doc start_close_read_write_doc -> closewrite(io) = nothing
@doc start_close_read_write_doc -> startread(io) = nothing
@doc start_close_read_write_doc -> closeread(io) = nothing


using MbedTLS.SSLContext
Expand Down

0 comments on commit 1a3c756

Please sign in to comment.