Skip to content

Commit 92d4b33

Browse files
committed
docs: fix descriptions
--- 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: passed - 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 ae9acc7 commit 92d4b33

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

lib/node_modules/@stdlib/blas/base/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ var o = blas;
157157

158158
### Utilities
159159

160-
<!-- <toc pattern="+(*assert|*diagonal*|*layout*|*matrix*|*operation*|*transpose*)"> -->
160+
<!-- <toc pattern="+(*assert|*diagonal*|*layout*|*matrix*|*orientation*|*operation*|*transpose*)"> -->
161161

162162
<div class="namespace-toc">
163163

lib/node_modules/@stdlib/blas/base/dgemv/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The function has the following parameters:
5353
- **N**: number of columns in the matrix `A`.
5454
- **α**: scalar constant.
5555
- **A**: input matrix stored in linear memory as a [`Float64Array`][mdn-float64array].
56-
- **lda**: stride of the first dimension of `A` (leading dimension of `A`).
56+
- **lda**: stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`).
5757
- **x**: input [`Float64Array`][mdn-float64array].
5858
- **sx**: stride length for `x`.
5959
- **β**: scalar constant.

lib/node_modules/@stdlib/blas/base/dgemv/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
Scalar constant.
3131

3232
A: Float64Array
33-
Input Matrix.
33+
Input matrix.
3434

3535
lda: integer
3636
Stride of the first dimension of `A` (a.k.a., leading dimension of the
@@ -110,7 +110,7 @@
110110
Scalar constant.
111111

112112
A: Float64Array
113-
Input Matrix.
113+
Input matrix.
114114

115115
sa1: integer
116116
Stride of the first dimension of `A`.

lib/node_modules/@stdlib/blas/base/dger/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The function has the following parameters:
6262
- **y**: an `N` element [`Float64Array`][mdn-float64array].
6363
- **sy**: stride length for `y`.
6464
- **A**: input matrix stored in linear memory as a [`Float64Array`][mdn-float64array].
65-
- **lda**: stride of the first dimension of `A` (leading dimension of `A`).
65+
- **lda**: stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`).
6666

6767
The stride parameters determine which elements in the strided arrays are accessed at runtime. For example, to iterate over every other element in `x` and `y`,
6868

lib/node_modules/@stdlib/blas/base/dger/docs/repl.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
Stride length for `y`.
3737

3838
A: Float64Array
39-
Input Matrix.
39+
Input matrix.
4040

4141
lda: integer
4242
Stride of the first dimension of `A` (a.k.a., leading dimension of the
@@ -45,7 +45,7 @@
4545
Returns
4646
-------
4747
A: Float64Array
48-
Input Matrix.
48+
Input matrix.
4949

5050
Examples
5151
--------
@@ -113,7 +113,7 @@
113113
Starting index for `y`.
114114

115115
A: Float64Array
116-
Input Matrix.
116+
Input matrix.
117117

118118
sa1: integer
119119
Stride of the first dimension of `A`.
@@ -127,7 +127,7 @@
127127
Returns
128128
-------
129129
A: Float64Array
130-
Input Matrix.
130+
Input matrix.
131131

132132
Examples
133133
--------

lib/node_modules/@stdlib/blas/base/sgemv/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ The function has the following parameters:
5353
- **N**: number of columns in the matrix `A`.
5454
- **α**: scalar constant.
5555
- **A**: input matrix stored in linear memory as a [`Float32Array`][mdn-float32array].
56-
- **lda**: stride of the first dimension of `A` (leading dimension of `A`).
56+
- **lda**: stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`).
5757
- **x**: input [`Float32Array`][mdn-float32array].
5858
- **sx**: stride length for `x`.
5959
- **β**: scalar constant.

lib/node_modules/@stdlib/blas/base/sgemv/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
Scalar constant.
3131

3232
A: Float32Array
33-
Input Matrix.
33+
Input matrix.
3434

3535
lda: integer
3636
Stride of the first dimension of `A` (a.k.a., leading dimension of the
@@ -110,7 +110,7 @@
110110
Scalar constant.
111111

112112
A: Float32Array
113-
Input Matrix.
113+
Input matrix.
114114

115115
sa1: integer
116116
Stride of the first dimension of `A`.

lib/node_modules/@stdlib/blas/base/sger/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The function has the following parameters:
6262
- **y**: an `N` element [`Float32Array`][mdn-float32array].
6363
- **sy**: stride length for `y`.
6464
- **A**: input matrix stored in linear memory as a [`Float32Array`][mdn-float32array].
65-
- **lda**: stride of the first dimension of `A` (leading dimension of `A`).
65+
- **lda**: stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`).
6666

6767
The stride parameters determine which elements in the strided arrays are accessed at runtime. For example, to iterate over every other element in `x` and `y`,
6868

lib/node_modules/@stdlib/blas/base/sger/docs/repl.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
Stride length for `y`.
3737

3838
A: Float32Array
39-
Input Matrix.
39+
Input matrix.
4040

4141
lda: integer
4242
Stride of the first dimension of `A` (a.k.a., leading dimension of the
@@ -45,7 +45,7 @@
4545
Returns
4646
-------
4747
A: Float32Array
48-
Input Matrix.
48+
Input matrix.
4949

5050
Examples
5151
--------
@@ -113,7 +113,7 @@
113113
Starting index for `y`.
114114

115115
A: Float32Array
116-
Input Matrix.
116+
Input matrix.
117117

118118
sa1: integer
119119
Stride of the first dimension of `A`.
@@ -127,7 +127,7 @@
127127
Returns
128128
-------
129129
A: Float32Array
130-
Input Matrix.
130+
Input matrix.
131131

132132
Examples
133133
--------

0 commit comments

Comments
 (0)