Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion math-doc/math/scribblings/math-array.scrbl
Original file line number Diff line number Diff line change
Expand Up @@ -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]]))
Expand Down