diff --git a/lib/node_modules/@stdlib/blas/base/dsyr2/lib/ndarray.js b/lib/node_modules/@stdlib/blas/base/dsyr2/lib/ndarray.js index 3f49f0f93ef7..72cbaa3bcb35 100644 --- a/lib/node_modules/@stdlib/blas/base/dsyr2/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/base/dsyr2/lib/ndarray.js @@ -70,7 +70,7 @@ function dsyr2( uplo, N, alpha, x, strideX, offsetX, y, strideY, offsetY, A, str throw new RangeError( format( 'invalid argument. Fifth argument must be non-zero. Value: `%d`.', strideX ) ); } if ( strideY === 0 ) { - throw new RangeError( format( 'invalid argument. Eighth argument must be non-zero. Value: `%d`.', strideX ) ); + throw new RangeError( format( 'invalid argument. Eighth argument must be non-zero. Value: `%d`.', strideY ) ); } if ( N === 0 || alpha === 0.0 ) { return A;