Skip to content

Commit 905019c

Browse files
committed
docs: fix grammar in function descriptions
--- 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: passed - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - 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 e1d0d22 commit 905019c

File tree

16 files changed

+21
-21
lines changed

16 files changed

+21
-21
lines changed

lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/README.md

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

2121
# gindexOfRow
2222

23-
> Return the index of the first row in a input matrix which has the same elements as a provided search vector.
23+
> Return the index of the first row in an input matrix which has the same elements as a provided search vector.
2424
2525
<section class="usage">
2626

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

3333
#### gindexOfRow( order, M, N, A, LDA, x, strideX )
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
```javascript
3838
/*
@@ -90,7 +90,7 @@ var out = gindexOfRow( 'row-major', 3, 2, A1, 2, x1, 1 );
9090

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

93-
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.
93+
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.
9494

9595
```javascript
9696
/*

lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/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

lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/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/node_modules/@stdlib/blas/ext/base/gindex-of-row/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/node_modules/@stdlib/blas/ext/base/gindex-of-row/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/node_modules/@stdlib/blas/ext/base/gindex-of-row/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/node_modules/@stdlib/blas/ext/base/gindex-of-row/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/node_modules/@stdlib/blas/ext/base/gindex-of-row/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
*

lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/blas/ext/base/gindex-of-row",
33
"version": "0.0.0",
4-
"description": "Return the index of the first row in a input matrix which has the same elements as a provided search vector.",
4+
"description": "Return the index of the first row in an input matrix which has the same elements as a provided search vector.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

lib/node_modules/@stdlib/lapack/base/iladlc/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-
* LAPACK routine to find the index of the last non-zero column in a input matrix.
22+
* LAPACK routine to find the index of the last non-zero column in an input matrix.
2323
*
2424
* @module @stdlib/lapack/base/iladlc
2525
*

0 commit comments

Comments
 (0)