Skip to content

Commit 2b751ef

Browse files
committed
Auto-generated commit
1 parent 319220d commit 2b751ef

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1125,6 +1125,7 @@ A total of 61 issues were closed in this release:
11251125

11261126
<details>
11271127

1128+
- [`e74dd95`](https://github.com/stdlib-js/stdlib/commit/e74dd953c73dd0fd149fc24dcee6f1f66847557a) - **refactor:** use `strideX`/`offsetX` parameter names in `blas/ext/base/gsorthp` [(#12539)](https://github.com/stdlib-js/stdlib/pull/12539) _(by Philipp Burckhardt)_
11281129
- [`45710f8`](https://github.com/stdlib-js/stdlib/commit/45710f8f1e2c0353af2798441c01f5fff9ad3fb6) - **refactor:** use `strideX`/`offsetX` parameter names in `blas/ext/base/dssumors` [(#12537)](https://github.com/stdlib-js/stdlib/pull/12537) _(by Philipp Burckhardt)_
11291130
- [`37b53d2`](https://github.com/stdlib-js/stdlib/commit/37b53d20a65b426c7d5a9a4048ac31b10af45df5) - **refactor:** use `strideX` parameter name in `blas/ext/base/dnansum` [(#12536)](https://github.com/stdlib-js/stdlib/pull/12536) _(by Philipp Burckhardt)_
11301131
- [`ec68ca7`](https://github.com/stdlib-js/stdlib/commit/ec68ca7cc35210db29a028d561ec71968e2ff753) - **docs:** fix TSDoc errors in `blas` declarations [(#12529)](https://github.com/stdlib-js/stdlib/pull/12529) _(by Philipp Burckhardt, Athan Reines)_

ext/base/gsorthp/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ interface Routine {
4646
* gsorthp( x.length, 1, x, 1 );
4747
* // x => [ -4.0, -2.0, 1.0, 3.0 ]
4848
*/
49-
<T extends InputArray>( N: number, order: number, x: T, stride: number ): T;
49+
<T extends InputArray>( N: number, order: number, x: T, strideX: number ): T;
5050

5151
/**
5252
* Sorts a strided array using heapsort and alternative indexing semantics.
@@ -64,7 +64,7 @@ interface Routine {
6464
* gsorthp.ndarray( x.length, 1, x, 1, 0 );
6565
* // x => [ -4.0, -2.0, 1.0, 3.0 ]
6666
*/
67-
ndarray<T extends InputArray>( N: number, order: number, x: T, stride: number, offset: number ): T;
67+
ndarray<T extends InputArray>( N: number, order: number, x: T, strideX: number, offsetX: number ): T;
6868
}
6969

7070
/**

0 commit comments

Comments
 (0)