Skip to content

Commit 5f632ae

Browse files
committed
Auto-generated commit
1 parent 1e2c3db commit 5f632ae

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

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

851851
<details>
852852

853+
- [`07bcff6`](https://github.com/stdlib-js/stdlib/commit/07bcff64aac9d1c61b327b8986bbf34e1643b0ba) - **refactor:** import method directly _(by Athan Reines)_
853854
- [`c4ace9d`](https://github.com/stdlib-js/stdlib/commit/c4ace9d015730f6552a6994c34b5ea8d5480e9e5) - **refactor:** create read-only views _(by Athan Reines)_
854855
- [`414d61b`](https://github.com/stdlib-js/stdlib/commit/414d61b8adf854cfa4582bd9659c760b03bc40a7) - **feat:** add `colcat` to namespace _(by Athan Reines)_
855856
- [`648e90d`](https://github.com/stdlib-js/stdlib/commit/648e90d07d66f130eca610f79242ceea902f9e10) - **feat:** add `ndarray/colcat` [(#11527)](https://github.com/stdlib-js/stdlib/pull/11527) _(by Muhammad Haris)_

colcat/lib/assign.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var ndarraylike2ndarray = require( './../../base/ndarraylike2ndarray' );
2626
var expandDimensions = require( './../../base/expand-dimensions' );
2727
var ndims = require( './../../base/ndims' );
2828
var getShape = require( './../../base/shape' );
29-
var concat = require( './../../concat' );
29+
var concat = require( './../../concat' ).assign;
3030
var format = require( '@stdlib/string/format' );
3131

3232

@@ -109,7 +109,7 @@ function assign( arrays, out ) {
109109
}
110110
arrs.push( arr );
111111
}
112-
concat.assign( arrs, out, {
112+
concat( arrs, out, {
113113
'dim': -1
114114
});
115115
return out;

0 commit comments

Comments
 (0)