From 0a69a2a137141e6d92e3857f1de80168c13dcc47 Mon Sep 17 00:00:00 2001 From: Michael Abbott <32575566+mcabbott@users.noreply.github.com> Date: Sun, 27 Mar 2022 12:19:58 -0400 Subject: [PATCH] compat 1.9 not 1.8 --- base/abstractarray.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/base/abstractarray.jl b/base/abstractarray.jl index 1feed06ee0cf7c..1c3ec057d0fca7 100644 --- a/base/abstractarray.jl +++ b/base/abstractarray.jl @@ -2591,14 +2591,14 @@ This has the same order of elements as [`Iterators.flatten`](@ref)`(iter)`. With keyword `dims::Integer`, instead the `i`th element of `iter` becomes the slice [`selectdim`](@ref)`(result, dims, i)`, so that `size(result, dims) == length(iter)`. -This reverses the action of [`eachslice`](@ref) with the same `dims`. +In this case `stack` reverses the action of [`eachslice`](@ref) with the same `dims`. Functions [`vcat`](@ref) and [`hvcat`](@ref) also combine arrays, but work mostly by extending their existing dimensions, rather than placing the arrays along new dimensions. -!!! compat "Julia 1.8" - This function requires at least Julia 1.8. +!!! compat "Julia 1.9" + This function requires at least Julia 1.9. # Examples ```jldoctest