Skip to content

Commit cce8749

Browse files
authored
Apply suggestions from code review
Co-authored-by: Athan <kgryte@gmail.com> Signed-off-by: Athan <kgryte@gmail.com>
1 parent 0a65302 commit cce8749

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ interface Routine {
3232
* ## Notes
3333
*
3434
* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index).
35-
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace is not accessed.
35+
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace array is ignored.
3636
*
3737
* @param order - storage layout
3838
* @param M - number of rows in `A`
@@ -64,7 +64,7 @@ interface Routine {
6464
* ## Notes
6565
*
6666
* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index).
67-
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace is not accessed.
67+
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace array is ignored.
6868
*
6969
* @param M - number of rows in `A`
7070
* @param N - number of columns in `A`

lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/lib/dindex_of_row.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var ndarray = require( './ndarray.js' );
3737
* ## Notes
3838
*
3939
* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index).
40-
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace is not accessed.
40+
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace array is ignored.
4141
*
4242
* @param {string} order - storage layout
4343
* @param {PositiveInteger} M - number of rows in `A`

lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var isRowMajor = require( '@stdlib/ndarray/base/assert/is-row-major' );
3333
* ## Notes
3434
*
3535
* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index).
36-
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace is not accessed.
36+
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace array is ignored.
3737
*
3838
* @param {PositiveInteger} M - number of rows in `A`
3939
* @param {PositiveInteger} N - number of columns in `A`

0 commit comments

Comments
 (0)