Skip to content

Commit afd1136

Browse files
committed
Use consistent case
1 parent ea0df4e commit afd1136

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ The function has the following parameters:
4747

4848
- **N**: number of indexed elements.
4949
- **alpha**: `numeric` constant.
50-
- **x**: input [`array`][mdn-array] or [`typed array`][mdn-typed-array].
50+
- **x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
5151
- **strideX**: index increment for `x`.
52-
- **y**: input [`array`][mdn-array] or [`typed array`][mdn-typed-array].
52+
- **y**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
5353
- **strideY**: index increment for `y`.
5454

5555
The `N` and `stride` parameters determine which elements in `x` and `y` are accessed at runtime. For example, to multiply every other value in `x` by `alpha` and add the result to the first `N` elements of `y` in reverse order,

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The function has the following parameters:
4747
- **N**: number of values to copy.
4848
- **x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
4949
- **strideX**: index increment for `x`.
50-
- **y**: destination [`array`][mdn-array] or [`typed array`][mdn-typed-array].
50+
- **y**: destination [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
5151
- **strideY**: index increment for `y`.
5252

5353
The `N` and `stride` parameters determine how values from `x` are copied into `y`. For example, to copy in reverse order every other value in `x` into the first `N` elements of `y`,

0 commit comments

Comments
 (0)