Skip to content

Commit 7ecedc0

Browse files
committed
chore: clean-up
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed ---
1 parent 92cf47b commit 7ecedc0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/ndarray/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

lib/node_modules/@stdlib/ndarray/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)