Skip to content

Commit cc87a2d

Browse files
committed
link
1 parent 959d3a2 commit cc87a2d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/node_modules/@stdlib/blas/ext/base/ndarray/scusumkbn2/benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function createBenchmark( len ) {
7676
}
7777
}
7878
b.toc();
79-
if ( isnanf( v.get( i % len ) ) ) {
79+
if ( isnanf( v.get( i%len ) ) ) {
8080
b.fail( 'should not return NaN' );
8181
}
8282
b.pass( 'benchmark finished' );

lib/node_modules/@stdlib/blas/ext/base/ndarray/scusumkbn2/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var strided = require( '@stdlib/blas/ext/base/scusumkbn2' ).ndarray;
3434
* Computes the cumulative sum of a one-dimensional single-precision floating-point ndarray using a second-order iterative Kahan–Babuška algorithm.
3535
*
3636
* @param {ArrayLikeObject<Object>} arrays - array-like object containing an input ndarray, an output ndarray, and an ndarray containing the initial sum
37-
* @returns {ndarray} output ndarray
37+
* @returns {Object} output ndarray
3838
*
3939
* @example
4040
* var Float32Array = require( '@stdlib/array/float32' );

0 commit comments

Comments
 (0)