Skip to content

Commit 771a424

Browse files
committed
Auto-generated commit
1 parent 48127fb commit 771a424

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-11-17)
7+
## Unreleased (2025-12-06)
88

99
<section class="features">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`4eb9d2a`](https://github.com/stdlib-js/stdlib/commit/4eb9d2a1dc5b2c5bd11a54ea62f1f88d2372d9a9) - **chore:** minor clean-up _(by Philipp Burckhardt)_
2526
- [`66f9e29`](https://github.com/stdlib-js/stdlib/commit/66f9e29b1c8622840b583123374c65a330712471) - **docs:** fix descriptions _(by Athan Reines)_
2627
- [`24e1741`](https://github.com/stdlib-js/stdlib/commit/24e174134cde28a3231f72920d83374ce6e9f402) - **docs:** update copy _(by Athan Reines)_
2728
- [`6d38098`](https://github.com/stdlib-js/stdlib/commit/6d380980eadd8ecd4b773abeb11d4c6422f98753) - **docs:** use double quotes _(by Athan Reines)_
@@ -37,9 +38,10 @@
3738

3839
### Contributors
3940

40-
A total of 1 person contributed to this release. Thank you to this contributor:
41+
A total of 2 people contributed to this release. Thank you to the following contributors:
4142

4243
- Athan Reines
44+
- Philipp Burckhardt
4345

4446
</section>
4547

benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function createBenchmark( len ) {
5858

5959
b.tic();
6060
for ( i = 0; i < b.iterations; i++ ) {
61-
o = linspace( [ len ], i, i+100, true );
61+
o = linspace( [ len ], i, i+100, true, options );
6262
if ( typeof o !== 'object' ) {
6363
b.fail( 'should return an ndarray' );
6464
}

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
Parameters
171171
----------
172172
out: ndarray
173-
Output array. Must have a numeric or "generic" data type.
173+
Output array. Must have a floating-point or "generic" data type.
174174

175175
start: ndarray|number|Complex
176176
Start of interval. May be either a number, a complex number, or an

lib/assign.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ var base = require( './base.js' );
5555
* @param {Options} [options] - function options
5656
* @param {IntegerArray} [options.dims=[-1]] - list of dimensions over which to perform operation
5757
* @throws {TypeError} first argument must be an ndarray-like object having at least one dimension
58-
* @throws {TypeError} second argument must be an ndarray-like object
59-
* @throws {TypeError} third argument must be an ndarray-like object
60-
* @throws {TypeError} fourth argument must be an ndarray-like object
58+
* @throws {TypeError} second argument must be either a number, complex number, or an ndarray-like object
59+
* @throws {TypeError} third argument must be either a number, complex number, or an ndarray-like object
60+
* @throws {TypeError} fourth argument must be either a boolean or an ndarray-like object
6161
* @throws {TypeError} options argument must be an object
6262
* @throws {RangeError} dimension indices must not exceed input ndarray bounds
6363
* @throws {RangeError} number of dimension indices must not exceed the number of input ndarray dimensions

lib/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ var base = require( './base.js' );
6363
* @param {string} [options.mode="throw"] - specifies how to handle indices which exceed ndarray dimensions
6464
* @param {StringArray} [options.submode=["throw"]] - specifies how to handle subscripts which exceed ndarray dimensions on a per dimension basis
6565
* @throws {TypeError} first argument must be either a nonnegative integer or an array of nonnegative integers
66-
* @throws {TypeError} second argument must be an ndarray-like object
67-
* @throws {TypeError} third argument must be an ndarray-like object
68-
* @throws {TypeError} fourth argument must be an ndarray-like object
66+
* @throws {TypeError} second argument must be either a number, complex number, or an ndarray-like object
67+
* @throws {TypeError} third argument must be either a number, complex number, or an ndarray-like object
68+
* @throws {TypeError} fourth argument must be either a boolean or an ndarray-like object
6969
* @throws {TypeError} options argument must be an object
7070
* @throws {RangeError} dimension indices must not exceed input ndarray bounds
7171
* @throws {RangeError} number of dimension indices must not exceed the number of input ndarray dimensions

0 commit comments

Comments
 (0)