Skip to content

Commit

Permalink
Oops: removed custom output prompt from jldoctest
Browse files Browse the repository at this point in the history
I copy/pasted from my terminal, and I had a custom output prompt set via
OhMyREPL that I didn't notice.
  • Loading branch information
NHDaly committed Jul 13, 2019
1 parent 18a80ae commit 64109f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/channels.jl
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ julia> chnl = Channel{Char}(1) do ch
put!(ch, c)
end
end
>> Channel{Char}(sz_max:1,sz_curr:1)
Channel{Char}(sz_max:1,sz_curr:1)
julia> String(collect(chnl))
>> "hello world"
"hello world"
```
"""
function Channel(func::Function; ctype=Any, csize=0, taskref=nothing)
Expand Down

0 comments on commit 64109f4

Please sign in to comment.