Skip to content

Commit 03b4b01

Browse files
authored
add spaces between type parameters and Dict entries (#37085)
1 parent c501f7a commit 03b4b01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pmap.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ and `tail`: an iterator over the remaining elements.
241241
242242
```jldoctest
243243
julia> b, c = Distributed.head_and_tail(1:10, 3)
244-
([1, 2, 3], Base.Iterators.Rest{UnitRange{Int64},Int64}(1:10, 3))
244+
([1, 2, 3], Base.Iterators.Rest{UnitRange{Int64}, Int64}(1:10, 3))
245245
246246
julia> collect(c)
247247
7-element Vector{Int64}:

0 commit comments

Comments
 (0)