Skip to content

Commit 64109f4

Browse files
committed
Oops: removed custom output prompt from jldoctest
I copy/pasted from my terminal, and I had a custom output prompt set via OhMyREPL that I didn't notice.
1 parent 18a80ae commit 64109f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

base/channels.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,10 @@ julia> chnl = Channel{Char}(1) do ch
114114
put!(ch, c)
115115
end
116116
end
117-
>> Channel{Char}(sz_max:1,sz_curr:1)
117+
Channel{Char}(sz_max:1,sz_curr:1)
118118
119119
julia> String(collect(chnl))
120-
>> "hello world"
120+
"hello world"
121121
```
122122
"""
123123
function Channel(func::Function; ctype=Any, csize=0, taskref=nothing)

0 commit comments

Comments
 (0)