Skip to content

Commit 54e4e47

Browse files
committed
Auto-generated commit
1 parent 623143e commit 54e4e47

File tree

11 files changed

+19
-17
lines changed

11 files changed

+19
-17
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-09-14)
7+
## Unreleased (2025-09-15)
88

99
<section class="features">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`905019c`](https://github.com/stdlib-js/stdlib/commit/905019c024611308865950e3d1dd51c642176e82) - **docs:** fix grammar in function descriptions _(by Philipp Burckhardt)_
2526
- [`de5a92e`](https://github.com/stdlib-js/stdlib/commit/de5a92e19185c9ec4e51cc6d54125bd3171ab989) - **feat:** add `blas/ext/base/gindex-of-row` _(by Athan Reines)_
2627

2728
</details>
@@ -34,9 +35,10 @@
3435

3536
### Contributors
3637

37-
A total of 1 person contributed to this release. Thank you to this contributor:
38+
A total of 2 people contributed to this release. Thank you to the following contributors:
3839

3940
- Athan Reines
41+
- Philipp Burckhardt
4042

4143
</section>
4244

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ limitations under the License.
3333

3434
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
3535

36-
> Return the index of the first row in a input matrix which has the same elements as a provided search vector.
36+
> Return the index of the first row in an input matrix which has the same elements as a provided search vector.
3737
3838
<section class="installation">
3939

@@ -65,7 +65,7 @@ var gindexOfRow = require( '@stdlib/blas-ext-base-gindex-of-row' );
6565

6666
#### gindexOfRow( order, M, N, A, LDA, x, strideX )
6767

68-
Returns the index of the first row in a input matrix which has the same elements as a provided search vector.
68+
Returns the index of the first row in an input matrix which has the same elements as a provided search vector.
6969

7070
```javascript
7171
/*
@@ -123,7 +123,7 @@ var out = gindexOfRow( 'row-major', 3, 2, A1, 2, x1, 1 );
123123

124124
#### gindexOfRow.ndarray( M, N, A, strideA1, strideA2, offsetA, x, strideX, offsetX )
125125

126-
Returns the index of the first row in a input matrix which has the same elements as a provided search vector using alternative indexing semantics.
126+
Returns the index of the first row in an input matrix which has the same elements as a provided search vector using alternative indexing semantics.
127127

128128
```javascript
129129
/*

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( order, M, N, A, LDA, x, strideX )
3-
Returns the index of the first row in a input matrix which has the same
3+
Returns the index of the first row in an input matrix which has the same
44
elements as a provided search vector.
55

66
Indexing is relative to the first index. To introduce an offset, use typed
@@ -48,7 +48,7 @@
4848

4949

5050
{{alias}}.ndarray( M, N, A, strideA1, strideA2, offsetA, x, strideX, offsetX )
51-
Returns the index of the first row in a input matrix which has the same
51+
Returns the index of the first row in an input matrix which has the same
5252
elements as a provided search vector using alternative indexing semantics.
5353

5454
While typed array views mandate a view offset based on the underlying

docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ type InputArray = Collection<unknown> | AccessorArrayLike<unknown>;
3333
*/
3434
interface Routine {
3535
/**
36-
* Returns the index of the first row in a input matrix which has the same elements as a provided search vector.
36+
* Returns the index of the first row in an input matrix which has the same elements as a provided search vector.
3737
*
3838
* ## Notes
3939
*
@@ -58,7 +58,7 @@ interface Routine {
5858
( order: Layout, M: number, N: number, A: InputArray, LDA: number, x: InputArray, strideX: number ): number;
5959

6060
/**
61-
* Returns the index of the first row in a input matrix which has the same elements as a provided search vector using alternative indexing semantics.
61+
* Returns the index of the first row in an input matrix which has the same elements as a provided search vector using alternative indexing semantics.
6262
*
6363
* ## Notes
6464
*
@@ -85,7 +85,7 @@ interface Routine {
8585
}
8686

8787
/**
88-
* Returns the index of the first row in a input matrix which has the same elements as a provided search vector.
88+
* Returns the index of the first row in an input matrix which has the same elements as a provided search vector.
8989
*
9090
* ## Notes
9191
*

lib/accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var ones = require( '@stdlib/array-base-ones' );
2727
// MAIN //
2828

2929
/**
30-
* Returns the index of the first row in a input matrix which has the same elements as a provided search vector.
30+
* Returns the index of the first row in an input matrix which has the same elements as a provided search vector.
3131
*
3232
* ## Notes
3333
*

lib/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var accessors = require( './accessors.js' );
2929
// MAIN //
3030

3131
/**
32-
* Returns the index of the first row in a input matrix which has the same elements as a provided search vector.
32+
* Returns the index of the first row in an input matrix which has the same elements as a provided search vector.
3333
*
3434
* ## Notes
3535
*

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Return the index of the first row in a input matrix which has the same elements as a provided search vector.
22+
* Return the index of the first row in an input matrix which has the same elements as a provided search vector.
2323
*
2424
* @module @stdlib/blas-ext-base-gindex-of-row
2525
*

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var base = require( './base.js' );
3232
// MAIN //
3333

3434
/**
35-
* Returns the index of the first row in a input matrix which has the same elements as a provided search vector.
35+
* Returns the index of the first row in an input matrix which has the same elements as a provided search vector.
3636
*
3737
* ## Notes
3838
*

lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var base = require( './base.js' );
2626
// MAIN //
2727

2828
/**
29-
* Returns the index of the first row in a input matrix which has the same elements as a provided search vector using alternative indexing semantics.
29+
* Returns the index of the first row in an input matrix which has the same elements as a provided search vector using alternative indexing semantics.
3030
*
3131
* ## Notes
3232
*

0 commit comments

Comments
 (0)