Skip to content

Commit 1b2f027

Browse files
authored
chore: apply suggestions from code review
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 00e35e3 commit 1b2f027

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/ext/base/dsortins/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ stdlib_strided_dsortins( 2, -1.0, x, 1 );
181181
The function accepts the following arguments:
182182
183183
- **N**: `[in] CBLAS_INT` number of indexed elements.
184-
- - **order**: `[in] double` sort order. If `order < 0.0`, the input strided array is sorted in **decreasing** order. If `order > 0.0`, the input strided array is sorted in **increasing** order. If `order == 0.0`, the input strided array is left unchanged.
184+
- **order**: `[in] double` sort order. If `order < 0.0`, the input strided array is sorted in **decreasing** order. If `order > 0.0`, the input strided array is sorted in **increasing** order. If `order == 0.0`, the input strided array is left unchanged.
185185
- **X**: `[inout] double*` input array.
186186
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
187187

lib/node_modules/@stdlib/blas/ext/base/dsortins/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ void API_SUFFIX(stdlib_strided_dsortins_ndarray)( const CBLAS_INT N, const doubl
6969
ox = offsetX;
7070
}
7171
fx = ox;
72-
lx = fx + ((N-1) * sx);
72+
lx = fx + ( (N-1) * sx );
7373
ix = fx + sx;
7474
if ( sx < 0 ) {
7575
// Traverse the strided array from right-to-left...

0 commit comments

Comments
 (0)