@@ -92,7 +92,7 @@ But `keys(a)`, `values(a)` and `pairs(a)` all iterate `a`
9292and return the elements in the same order.
9393
9494# Examples
95- ```jldoctest
95+ ```jldoctest; filter = r"^ \\ s+' \\ S'.* \$ "m
9696julia> D = Dict('a'=>2, 'b'=>3)
9797Dict{Char, Int64} with 2 entries:
9898 'a' => 2
@@ -118,7 +118,7 @@ But `keys(a)`, `values(a)` and `pairs(a)` all iterate `a`
118118and return the elements in the same order.
119119
120120# Examples
121- ```jldoctest
121+ ```jldoctest; filter = r"^ \\ s+ \\ S+( \\ s+=> \\ s+ \\ d)? \$ "m
122122julia> D = Dict('a'=>2, 'b'=>3)
123123Dict{Char, Int64} with 2 entries:
124124 'a' => 2
@@ -332,7 +332,7 @@ value for that key will be the value it has in the last collection listed.
332332See also [`mergewith`](@ref) for custom handling of values with the same key.
333333
334334# Examples
335- ```jldoctest
335+ ```jldoctest; filter = r"^ \\ s+ \\ S+ \\ s+=> \\ s+ \\ S+ \$ "m
336336julia> a = Dict("foo" => 0.0, "bar" => 42.0)
337337Dict{String, Float64} with 2 entries:
338338 "bar" => 42.0
@@ -377,7 +377,7 @@ Method `merge(combine::Union{Function,Type}, args...)` as an alias of
377377 `mergewith` requires Julia 1.5 or later.
378378
379379# Examples
380- ```jldoctest
380+ ```jldoctest; filter = r"^ \\ s+ \\ S+ \\ s+=> \\ s+ \\ S+ \$ "m
381381julia> a = Dict("foo" => 0.0, "bar" => 42.0)
382382Dict{String, Float64} with 2 entries:
383383 "bar" => 42.0
0 commit comments