Skip to content

Commit a9ded39

Browse files
Planeshifterkgryte
andauthored
chore: clean-up
PR-URL: #12446 Co-authored-by: Athan Reines <kgryte@gmail.com> Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 044b270 commit a9ded39

14 files changed

Lines changed: 21 additions & 21 deletions

File tree

lib/node_modules/@stdlib/blas/ext/base/dcartesian-power/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ The function has the following parameters:
110110
- **strideX**: stride length for `x`.
111111
- **offsetX**: starting index for `x`.
112112
- **out**: output [`Float64Array`][@stdlib/array/float64].
113-
- **strideOut1**: stride length of the first dimension of `out`.
114-
- **strideOut2**: stride length of the second dimension of `out`.
113+
- **strideOut1**: stride length for the first dimension of `out`.
114+
- **strideOut2**: stride length for the second dimension of `out`.
115115
- **offsetOut**: starting index for `out`.
116116

117117
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, to access only the last two elements:
@@ -247,8 +247,8 @@ The function accepts the following arguments:
247247
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
248248
- **offsetX**: `[in] CBLAS_INT` starting index for `X`.
249249
- **Out**: `[out] double*` output array.
250-
- **strideOut1**: `[in] CBLAS_INT` stride length of the first dimension of `Out`.
251-
- **strideOut2**: `[in] CBLAS_INT` stride length of the second dimension of `Out`.
250+
- **strideOut1**: `[in] CBLAS_INT` stride length for the first dimension of `Out`.
251+
- **strideOut2**: `[in] CBLAS_INT` stride length for the second dimension of `Out`.
252252
- **offsetOut**: `[in] CBLAS_INT` starting index for `Out`.
253253
254254
```c

lib/node_modules/@stdlib/blas/ext/base/gcartesian-power/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ The function has the following parameters:
104104
- **strideX**: stride length for `x`.
105105
- **offsetX**: starting index for `x`.
106106
- **out**: output [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
107-
- **strideOut1**: stride length of the first dimension of `out`.
108-
- **strideOut2**: stride length of the second dimension of `out`.
107+
- **strideOut1**: stride length for the first dimension of `out`.
108+
- **strideOut2**: stride length for the second dimension of `out`.
109109
- **offsetOut**: starting index for `out`.
110110

111111
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, to access only the last two elements:

lib/node_modules/@stdlib/blas/ext/base/scartesian-power/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ The function has the following parameters:
110110
- **strideX**: stride length for `x`.
111111
- **offsetX**: starting index for `x`.
112112
- **out**: output [`Float32Array`][@stdlib/array/float32].
113-
- **strideOut1**: stride length of the first dimension of `out`.
114-
- **strideOut2**: stride length of the second dimension of `out`.
113+
- **strideOut1**: stride length for the first dimension of `out`.
114+
- **strideOut2**: stride length for the second dimension of `out`.
115115
- **offsetOut**: starting index for `out`.
116116

117117
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, to access only the last two elements:
@@ -247,8 +247,8 @@ The function accepts the following arguments:
247247
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
248248
- **offsetX**: `[in] CBLAS_INT` starting index for `X`.
249249
- **Out**: `[out] float*` output array.
250-
- **strideOut1**: `[in] CBLAS_INT` stride length of the first dimension of `Out`.
251-
- **strideOut2**: `[in] CBLAS_INT` stride length of the second dimension of `Out`.
250+
- **strideOut1**: `[in] CBLAS_INT` stride length for the first dimension of `Out`.
251+
- **strideOut2**: `[in] CBLAS_INT` stride length for the second dimension of `Out`.
252252
- **offsetOut**: `[in] CBLAS_INT` starting index for `Out`.
253253
254254
```c

lib/node_modules/@stdlib/constants/float64/log10-e/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* @type {number}
4040
* @default 0.4342944819032518
4141
* @see [OEIS]{@link https://oeis.org/A001113}
42-
* @see [Wikipedia]{@link https://en.wikipedia.org/wiki/E_%27mathematical_constant%28}
42+
* @see [Wikipedia]{@link https://en.wikipedia.org/wiki/E_(mathematical_constant)}
4343
*/
4444
var LOG10E = 4.34294481903251827651128918916605082294397005803666566114453783165864649208870774729224949338431748318706106745e-01; // eslint-disable-line max-len
4545

lib/node_modules/@stdlib/constants/float64/log2-e/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* @type {number}
4040
* @default 1.4426950408889634
4141
* @see [OEIS]{@link https://oeis.org/A001113}
42-
* @see [Wikipedia]{@link https://en.wikipedia.org/wiki/E_%27mathematical_constant%28}
42+
* @see [Wikipedia]{@link https://en.wikipedia.org/wiki/E_(mathematical_constant)}
4343
*/
4444
var LOG2E = 1.442695040888963407359924681001892137426645954152985934135;
4545

lib/node_modules/@stdlib/constants/float64/nan/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ limitations under the License.
1818
1919
-->
2020

21-
# NAN
21+
# FLOAT64_NAN
2222

2323
> [Double-precision floating-point][ieee754] `NaN`.
2424

lib/node_modules/@stdlib/constants/float64/ninf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ limitations under the License.
1818
1919
-->
2020

21-
# NINF
21+
# FLOAT64_NINF
2222

2323
> [Double-precision floating-point][ieee754] negative infinity.
2424

lib/node_modules/@stdlib/constants/float64/pinf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ limitations under the License.
1818
1919
-->
2020

21-
# PINF
21+
# FLOAT64_PINF
2222

2323
> [Double-precision floating-point][ieee754] positive infinity.
2424

lib/node_modules/@stdlib/math/base/special/gammasgnf/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/math/base/special/gammasgnf",
33
"version": "0.0.0",
4-
"description": "Computes the sign of the gamma function for a single-precision floating-point number.",
4+
"description": "Compute the sign of the gamma function for a single-precision floating-point number.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

lib/node_modules/@stdlib/math/base/special/hyp2f1/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/math/base/special/hyp2f1",
33
"version": "0.0.0",
4-
"description": "Evaluates the Gaussian hypergeometric function.",
4+
"description": "Evaluate the Gaussian hypergeometric function.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

0 commit comments

Comments
 (0)