Skip to content

Commit defed16

Browse files
committed
chore: minor 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: passed - task: lint_repl_help status: passed - 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: na - task: lint_license_headers status: passed ---
1 parent c8bf1de commit defed16

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

lib/node_modules/@stdlib/blas/ext/base/dlast-index-of/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Indexing is relative to the first index. To introduce an offset, use a typed
1010
array view.
1111

12-
if `N <= 0`, the function returns `-1`.
12+
If `N <= 0`, the function returns `-1`.
1313

1414
Parameters
1515
----------
@@ -37,7 +37,7 @@
3737
6
3838

3939

40-
{{alias}}( N, searchElement, x, strideX, offsetX )
40+
{{alias}}.ndarray( N, searchElement, x, strideX, offsetX )
4141
Returns the last index of a specified search element in a double-precision
4242
floating-point strided array using alternative indexing semantics.
4343

lib/node_modules/@stdlib/lapack/base/dlaset/lib/dlaset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var base = require( './base.js' );
3131
/**
3232
* Sets the off-diagonal elements and the diagonal elements of a double-precision floating-point matrix to specified values.
3333
*
34-
* @param {string} order - storage layout of `A` and `B`
34+
* @param {string} order - storage layout of `A`
3535
* @param {string} uplo - specifies whether to set the upper or lower triangular/trapezoidal part of matrix `A`
3636
* @param {NonNegativeInteger} M - number of rows in matrix `A`
3737
* @param {NonNegativeInteger} N - number of columns in matrix `A`

lib/node_modules/@stdlib/lapack/base/dlaset/lib/ndarray.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ var base = require( './base.js' );
2828
/**
2929
* Sets the off-diagonal elements and the diagonal elements of a double-precision floating-point matrix to specified values using alternative indexing semantics.
3030
*
31-
* @private
3231
* @param {string} uplo - specifies whether to set the upper or lower triangular/trapezoidal part of matrix `A`
3332
* @param {NonNegativeInteger} M - number of rows in matrix `A`
3433
* @param {NonNegativeInteger} N - number of columns in matrix `A`

lib/node_modules/@stdlib/lapack/base/dlaset/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,6 @@
5757
"dlaset",
5858
"initialize",
5959
"set",
60-
"exchange",
61-
"permute",
62-
"permutedims",
6360
"linear",
6461
"algebra",
6562
"subroutines",

0 commit comments

Comments
 (0)