Skip to content

Commit 721033e

Browse files
committed
docs: minor clean-up
--- 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 8a2eb91 commit 721033e

File tree

16 files changed

+28
-22
lines changed

16 files changed

+28
-22
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ var v = gapxsum( x.length, 5.0, x, 1 );
5050
The function has the following parameters:
5151

5252
- **N**: number of indexed elements.
53+
- **alpha**: scalar constant.
5354
- **x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
5455
- **strideX**: stride length.
5556

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ var v = gapxsumkbn( x.length, 5.0, x, 1 );
5050
The function has the following parameters:
5151

5252
- **N**: number of indexed elements.
53+
- **alpha**: scalar constant.
5354
- **x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
5455
- **strideX**: stride length.
5556

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ var v = gapxsumkbn2( x.length, 5.0, x, 1 );
5050
The function has the following parameters:
5151

5252
- **N**: number of indexed elements.
53+
- **alpha**: scalar constant.
5354
- **x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
5455
- **strideX**: stride length.
5556

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ var v = gapxsumors( x.length, 5.0, x, 1 );
5050
The function has the following parameters:
5151

5252
- **N**: number of indexed elements.
53+
- **alpha**: scalar constant.
5354
- **x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
5455
- **strideX**: stride length.
5556

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ var v = gapxsumpw( x.length, 5.0, x, 1 );
5050
The function has the following parameters:
5151

5252
- **N**: number of indexed elements.
53+
- **alpha**: scalar constant.
5354
- **x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
5455
- **strideX**: stride length.
5556

lib/node_modules/@stdlib/blas/ext/base/grev/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ interface Routine {
4343
<T = unknown>( N: number, x: Collection<T>, strideX: number ): Collection<T>;
4444

4545
/**
46-
* Reverses a strided array in-place. using alternative indexing semantics.
46+
* Reverses a strided array in-place using alternative indexing semantics.
4747
*
4848
* @param N - number of indexed elements
4949
* @param x - input array

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The function has the following parameters:
4646
- **N**: number of indexed elements.
4747
- **order**: sort order. If `order < 0.0`, the input strided array is sorted in **decreasing** order. If `order > 0.0`, the input strided array is sorted in **increasing** order. If `order == 0.0`, the input strided array is left unchanged.
4848
- **x**: input [`Array`][mdn-array] or [`typed array`][mdn-typed-array].
49-
- **stride**: stride length.
49+
- **strideX**: stride length.
5050

5151
The `N` and stride parameters determine which elements in the strided array are accessed at runtime. For example, to sort every other element:
5252

@@ -106,7 +106,7 @@ gsortins.ndarray( 3, 1.0, x, 1, x.length-3 );
106106
## Notes
107107

108108
- If `N <= 0` or `order == 0.0`, both functions return `x` unchanged.
109-
- Both functions support array-like objects having getter and setter accessors for array element access (e.g., [`@stdlib/array/base/accessor`][@stdlib/array/base/accessor])
109+
- Both functions support array-like objects having getter and setter accessors for array element access (e.g., [`@stdlib/array/base/accessor`][@stdlib/array/base/accessor]).
110110
- The algorithm distinguishes between `-0` and `+0`. When sorted in increasing order, `-0` is sorted before `+0`. When sorted in decreasing order, `-0` is sorted after `+0`.
111111
- The algorithm sorts `NaN` values to the end. When sorted in increasing order, `NaN` values are sorted last. When sorted in decreasing order, `NaN` values are sorted first.
112112
- The algorithm has space complexity `O(1)` and worst case time complexity `O(N^2)`.

lib/node_modules/@stdlib/blas/ext/base/ndarray/dcusum/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var xbuf = new Float64Array( [ 1.0, 3.0, 4.0, 2.0 ] );
5050
var x = new ndarray( 'float64', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
5151

5252
var ybuf = new Float64Array( [ 0.0, 0.0, 0.0, 0.0 ] );
53-
var y = new ndarray( 'float64', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
53+
var y = new ndarray( 'float64', ybuf, [ 4 ], [ 1 ], 0, 'row-major' );
5454

5555
var initial = scalar2ndarray( 0.0, 'float64', 'row-major' );
5656

lib/node_modules/@stdlib/blas/ext/base/ndarray/gcusum/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ var xbuf = [ 1.0, 3.0, 4.0, 2.0 ];
4949
var x = new ndarray( 'generic', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
5050

5151
var ybuf = [ 0.0, 0.0, 0.0, 0.0 ];
52-
var y = new ndarray( 'generic', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
52+
var y = new ndarray( 'generic', ybuf, [ 4 ], [ 1 ], 0, 'row-major' );
5353

5454
var initial = scalar2ndarray( 0.0, 'generic', 'row-major' );
5555

lib/node_modules/@stdlib/blas/ext/base/ndarray/scusum/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var xbuf = new Float32Array( [ 1.0, 3.0, 4.0, 2.0 ] );
5050
var x = new ndarray( 'float32', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
5151

5252
var ybuf = new Float32Array( [ 0.0, 0.0, 0.0, 0.0 ] );
53-
var y = new ndarray( 'float32', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
53+
var y = new ndarray( 'float32', ybuf, [ 4 ], [ 1 ], 0, 'row-major' );
5454

5555
var initial = scalar2ndarray( 0.0, 'float32', 'row-major' );
5656

0 commit comments

Comments
 (0)