Skip to content

Commit 54696ce

Browse files
committed
chore: code review
--- 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: na - 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 fefbdef commit 54696ce

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/lapack/base/dlascl

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The function has the following parameters:
5656
- **A**: input [`Float64Array`][mdn-float64array].
5757
- **LDA**: stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`).
5858

59-
If `type` is `banded`, `symmetric-banded-lower` or `symmetric-banded-upper` the matrix should be stored in the [`Band storage`][lapack-band-storage] format.
59+
If `type` is `'banded'`, `'symmetric-banded-lower'`, or `'symmetric-banded-upper'`, the matrix should be stored in the [band storage][lapack-band-storage] format.
6060

6161
Note that indexing is relative to the first index. To introduce an offset, use [`typed array`][mdn-typed-array] views.
6262

@@ -102,7 +102,7 @@ The function has the following parameters:
102102
- **strideA2**: stride of the second dimension of `A`.
103103
- **offsetA**: starting index for `A`.
104104

105-
If `type` is `banded`, `symmetric-banded-lower` or `symmetric-banded-upper` the matrix should be stored in the [`Band storage`][lapack-band-storage] format.
105+
If `type` is `'banded'`, `'symmetric-banded-lower'`, or `'symmetric-banded-upper'`, the matrix should be stored in the [band storage][lapack-band-storage] format.
106106

107107
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example,
108108

0 commit comments

Comments
 (0)