Skip to content

Commit 28c22a2

Browse files
authored
Apply suggestions from code review
Co-authored-by: Athan <kgryte@gmail.com> Signed-off-by: Athan <kgryte@gmail.com>
1 parent 416bb2d commit 28c22a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/blas/ext/base/gvander/lib

lib/node_modules/@stdlib/blas/ext/base/gvander/lib/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ function gvander( mode, M, N, x, strideX, offsetX, out, strideOut1, strideOut2,
138138
}
139139
// Decreasing: column 0 contains x^(N-1), last column all ones
140140
gfill( S0, 1.0, out, strideOut1, offsetOut + ( ( S1-1 ) * strideOut2 ) );
141-
for ( i1 = S1 - 2; i1 >= 0; i1-- ) {
141+
for ( i1 = S1-2; i1 >= 0; i1-- ) {
142142
io = offsetOut + ( i1*strideOut2 );
143143
ix = offsetX;
144144
for ( i0 = 0; i0 < S0; i0++ ) {

0 commit comments

Comments
 (0)