Skip to content

Commit e7d80da

Browse files
committed
chore: cleanup
--- 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: passed - 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: na - task: lint_license_headers status: passed ---
1 parent 805e889 commit e7d80da

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/lapack/base/dlacn2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var dlacn2 = require( '@stdlib/lapack/base/dlacn2' );
3232

3333
#### dlacn2( N, V, X, ISGN, EST, KASE, ISAVE )
3434

35-
Estimates the one-norm of a square matrix `A`, using alternative indexing semantics and reverse communication for evaluating matrix-vector products.
35+
Estimates the one-norm of a square matrix `A` using reverse communication for evaluating matrix-vector products.
3636

3737
```javascript
3838
var Int32Array = require( '@stdlib/array/int32' );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ function isaveIsFive( N, V, strideV, offsetV, X, strideX, offsetX, EST, offsetES
397397
*
398398
* ## Notes
399399
*
400-
* the reverse communication takes place using `KASE`, it may have any of these values:
400+
* The reverse communication takes place using `KASE`. The single-element in `KASE` may have the following values:
401401
*
402402
* - `0`: estimation is complete
403403
* - `1`: caller must compute `A * X` and store the result back in `X`

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var base = require( './base.js' );
3030
*
3131
* ## Notes
3232
*
33-
* the reverse communication takes place using `KASE`, it may have any of these values:
33+
* The reverse communication takes place using `KASE`. The single-element in `KASE` may have the following values:
3434
*
3535
* - `0`: estimation is complete
3636
* - `1`: caller must compute `A * X` and store the result back in `X`

0 commit comments

Comments
 (0)