Skip to content

Commit 0207813

Browse files
committed
Auto-generated commit
1 parent bb95fbd commit 0207813

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

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

412412
<details>
413413

414+
- [`7ecedc0`](https://github.com/stdlib-js/stdlib/commit/7ecedc01b6a480da62a659feb509c6f18c6d9d45) - **chore:** clean-up _(by Athan Reines)_
414415
- [`92cf47b`](https://github.com/stdlib-js/stdlib/commit/92cf47b704f75a6a0074d4ee3b5f65de0dd411b2) - **bench:** fix typo in filename _(by Athan Reines)_
415416
- [`11e6c60`](https://github.com/stdlib-js/stdlib/commit/11e6c608e47109a8576613435dc1c43ea2d9dbc8) - **bench:** fix typo in filename _(by Athan Reines)_
416417
- [`ff2a8c6`](https://github.com/stdlib-js/stdlib/commit/ff2a8c6de98066b13d14ee4a771f68fa8f99f586) - **docs:** update comment _(by Athan Reines)_

fill-by/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function fcn2(): ComplexLike {
4444

4545
// TESTS //
4646

47-
// The function returns `undefined`...
47+
// The function returns an ndarray...
4848
{
4949
fillBy( zeros( 'float64', [ 2, 2 ], 'row-major' ), fcn1 ); // $ExpectType float64ndarray
5050
fillBy( zeros( 'complex128', [ 2, 2 ], 'row-major' ), fcn2 ); // $ExpectType complex128ndarray

fill-by/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var format = require( '@stdlib/string/format' );
3838
* @throws {TypeError} first argument must be an ndarray-like object
3939
* @throws {TypeError} second argument must be a function
4040
* @throws {Error} cannot write to a read-only ndarray
41-
* @returns {void}
41+
* @returns {ndarray} updated ndarray
4242
*
4343
* @example
4444
* var zeros = require( '@stdlib/ndarray/zeros' );

0 commit comments

Comments
 (0)