Skip to content

Commit 12550f8

Browse files
array-append* docs: No broadcasting along axis k (#115)
* array-append* docs: No broadcasting along axis k This makes the documentation match the implementation and the last example. * Tweak grammar --------- Co-authored-by: Pavel Panchekha <[email protected]>
1 parent 38ae0f4 commit 12550f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

math-doc/math/scribblings/math-array.scrbl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1331,7 +1331,7 @@ Almost all array transformations, including @secref{array:slicing}, are implemen
13311331

13321332
@defproc[(array-append* [arrs (Listof (Array A))] [k Integer 0]) (Array A)]{
13331333
Appends the arrays in @racket[arrs] along axis @racket[k]. If the arrays' shapes are not
1334-
the same, they are @tech{broadcast} first.
1334+
the same, they are first @tech{broadcast} along all axes (except the @racket[k]th).
13351335
@examples[#:eval typed-eval
13361336
(define arr (array #[#[0 1] #[2 3]]))
13371337
(define brr (array #[#['a 'b] #['c 'd]]))

0 commit comments

Comments
 (0)