diff --git a/math-doc/math/scribblings/math-array.scrbl b/math-doc/math/scribblings/math-array.scrbl index dabcae1..5c231cf 100644 --- a/math-doc/math/scribblings/math-array.scrbl +++ b/math-doc/math/scribblings/math-array.scrbl @@ -1331,7 +1331,7 @@ Almost all array transformations, including @secref{array:slicing}, are implemen @defproc[(array-append* [arrs (Listof (Array A))] [k Integer 0]) (Array A)]{ Appends the arrays in @racket[arrs] along axis @racket[k]. If the arrays' shapes are not -the same, they are @tech{broadcast} first. +the same, they are @tech{broadcast} along all axes but the @racket[k]th first. @examples[#:eval typed-eval (define arr (array #[#[0 1] #[2 3]])) (define brr (array #[#['a 'b] #['c 'd]]))