Skip to content

Commit 6903486

Browse files
committed
Auto-generated commit
1 parent 24f5a2b commit 6903486

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -611,6 +611,7 @@ A total of 31 issues were closed in this release:
611611

612612
<details>
613613

614+
- [`542bbf7`](https://github.com/stdlib-js/stdlib/commit/542bbf774737915ba7cd359d904e007239e397f6) - **refactor:** pass ndarray view to internal function _(by Athan Reines)_
614615
- [`1a6e701`](https://github.com/stdlib-js/stdlib/commit/1a6e701ed9749678827c69b83d4780bd96d78015) - **feat:** add `ndarray/concat` [(#7969)](https://github.com/stdlib-js/stdlib/pull/7969) _(by Muhammad Haris, Athan Reines, stdlib-bot)_
615616
- [`36fb4b9`](https://github.com/stdlib-js/stdlib/commit/36fb4b93d268a41fc21accf0af15fc815b00813e) - **docs:** update Markdown stdlib package URLs [(#8347)](https://github.com/stdlib-js/stdlib/pull/8347) _(by stdlib-bot)_
616617
- [`e07ebc2`](https://github.com/stdlib-js/stdlib/commit/e07ebc2ed009ef1fcf98ad476c6077c3a02a782f) - **docs:** update examples _(by Athan Reines)_

concat/lib/assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ function assign( arrays, out, dim ) {
130130
throw new TypeError( format( 'invalid argument. Second argument is not broadcast compatible with the list of input ndarrays. Array shape: (%s). Desired shape: (%s).', join( osh, ', ' ), join( sh, ', ' ) ) );
131131
}
132132
// Perform concatenation:
133-
base( arrs, d, out );
133+
base( arrs, d, view );
134134

135135
return out;
136136
}

0 commit comments

Comments
 (0)