Skip to content

Commit 3e4afab

Browse files
committed
Auto-generated commit
1 parent ef03aec commit 3e4afab

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,7 @@
510510

511511
### Bug Fixes
512512

513+
- [`11cc2cf`](https://github.com/stdlib-js/stdlib/commit/11cc2cf8869a4b6ebf48545d5678eda25513529e) - use ndarray assertion utility
513514
- [`6c43167`](https://github.com/stdlib-js/stdlib/commit/6c4316733d615b06d301eec89c377838a6b56dd8) - resolve normalized data type
514515
- [`c1ac155`](https://github.com/stdlib-js/stdlib/commit/c1ac155e7e751a72a868ebae2f4667c338f834bd) - update return type
515516
- [`a0191a5`](https://github.com/stdlib-js/stdlib/commit/a0191a5c95f5f40d8247e1e5679812aef0d81b1c) - ensure sentinel value is passed through
@@ -715,6 +716,7 @@ A total of 43 issues were closed in this release:
715716

716717
<details>
717718

719+
- [`11cc2cf`](https://github.com/stdlib-js/stdlib/commit/11cc2cf8869a4b6ebf48545d5678eda25513529e) - **fix:** use ndarray assertion utility _(by Athan Reines)_
718720
- [`ebe7a8b`](https://github.com/stdlib-js/stdlib/commit/ebe7a8b476f13186ac83014965e4b60e502e6135) - **feat:** add `ndarray/base/quaternary-loop-interchange-order` [(#9832)](https://github.com/stdlib-js/stdlib/pull/9832) _(by Muhammad Haris)_
719721
- [`4641a30`](https://github.com/stdlib-js/stdlib/commit/4641a30d086f904746679c39e05898ecc65a3778) - **feat:** add `ndarray/base/quinary-loop-interchange-order` [(#9870)](https://github.com/stdlib-js/stdlib/pull/9870) _(by Muhammad Haris)_
720722
- [`4a2e646`](https://github.com/stdlib-js/stdlib/commit/4a2e6469a8bcab9e12a0a758c12aae7dbbf4da46) - **chore:** fix JavaScript lint errors [(#9846)](https://github.com/stdlib-js/stdlib/pull/9846) _(by Suyash Pathak, Athan Reines)_

base/broadcast-scalar/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
var isNumber = require( '@stdlib/assert/is-number' ).isPrimitive;
2424
var isAccessorArray = require( '@stdlib/array/base/assert/is-accessor-array' );
25-
var isComplexDataType = require( '@stdlib/array/base/assert/is-complex-floating-point-data-type' );
25+
var isComplexDataType = require( './../../../base/assert/is-complex-floating-point-data-type' );
2626
var accessorSetter = require( '@stdlib/array/base/accessor-setter' );
2727
var setter = require( '@stdlib/array/base/setter' );
2828
var zeros = require( '@stdlib/array/base/zeros' );

0 commit comments

Comments
 (0)