Skip to content

Commit c2c6ce8

Browse files
committed
Update array print look
1 parent 40f6dd8 commit c2c6ce8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utilities.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ column cycle fastest, those in the last clolumn slowest.
301301
```julia-repl
302302
julia> iterators = ([1, 2], ["a","b"], ["x", "y", "z"]);
303303
julia> MLJTuning.unwind(iterators...)
304-
12×3 Array{Any,2}:
304+
12×3 Matrix{Any}:
305305
1 "a" "x"
306306
2 "a" "x"
307307
1 "b" "x"
@@ -347,7 +347,7 @@ Split an `AbstractRange` into `n` subranges of approximately equal length.
347347
### Example
348348
```julia-repl
349349
julia> collect(chunks(1:5, 2))
350-
2-element Array{UnitRange{Int64},1}:
350+
2-element Vector{UnitRange{Int64}}:
351351
1:3
352352
4:5
353353
```

0 commit comments

Comments
 (0)