Skip to content

Commit f766a24

Browse files
authored
refactor: use strideX/offsetX parameter names in blas/ext/base/ssortins
PR-URL: #12541 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 608e415 commit f766a24

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

  • lib/node_modules/@stdlib/blas/ext/base/ssortins/docs/types

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ interface Routine {
2828
* @param N - number of indexed elements
2929
* @param order - sort order
3030
* @param x - input array
31-
* @param stride - stride length
31+
* @param strideX - stride length
3232
* @returns input array
3333
*
3434
* @example
@@ -39,16 +39,16 @@ interface Routine {
3939
* ssortins( x.length, 1, x, 1 );
4040
* // x => <Float32Array>[ -4.0, -2.0, 1.0, 3.0 ]
4141
*/
42-
( N: number, order: number, x: Float32Array, stride: number ): Float32Array;
42+
( N: number, order: number, x: Float32Array, strideX: number ): Float32Array;
4343

4444
/**
4545
* Sorts a single-precision floating-point strided array using insertion sort and alternative indexing semantics.
4646
*
4747
* @param N - number of indexed elements
4848
* @param order - sort order
4949
* @param x - input array
50-
* @param stride - stride length
51-
* @param offset - starting index
50+
* @param strideX - stride length
51+
* @param offsetX - starting index
5252
* @returns input array
5353
*
5454
* @example
@@ -59,7 +59,7 @@ interface Routine {
5959
* ssortins.ndarray( x.length, 1, x, 1, 0 );
6060
* // x => <Float32Array>[ -4.0, -2.0, 1.0, 3.0 ]
6161
*/
62-
ndarray( N: number, order: number, x: Float32Array, stride: number, offset: number ): Float32Array;
62+
ndarray( N: number, order: number, x: Float32Array, strideX: number, offsetX: number ): Float32Array;
6363
}
6464

6565
/**
@@ -68,7 +68,7 @@ interface Routine {
6868
* @param N - number of indexed elements
6969
* @param order - sort order
7070
* @param x - input array
71-
* @param stride - stride length
71+
* @param strideX - stride length
7272
* @returns input array
7373
*
7474
* @example

0 commit comments

Comments
 (0)