diff --git a/lib/node_modules/@stdlib/math/base/special/fresnel/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/fresnel/benchmark/c/native/benchmark.c index 2da231964e91..43d699388deb 100644 --- a/lib/node_modules/@stdlib/math/base/special/fresnel/benchmark/c/native/benchmark.c +++ b/lib/node_modules/@stdlib/math/base/special/fresnel/benchmark/c/native/benchmark.c @@ -101,13 +101,13 @@ static double benchmark( void ) { for ( i = 0; i < ITERATIONS; i++ ) { x = ( 20.0 * rand_double() ) - 10.0; stdlib_base_fresnel( x, &S, &C ); - if ( C != C || S != S) { + if ( C != C || S != S ) { printf( "unexpected results\n" ); break; } } elapsed = tic() - t; - if ( C != C || S != S) { + if ( C != C || S != S ) { printf( "unexpected results\n" ); } return elapsed; diff --git a/lib/node_modules/@stdlib/math/base/special/fresnel/lib/native.js b/lib/node_modules/@stdlib/math/base/special/fresnel/lib/native.js index f65d25565adf..864408e813f5 100644 --- a/lib/node_modules/@stdlib/math/base/special/fresnel/lib/native.js +++ b/lib/node_modules/@stdlib/math/base/special/fresnel/lib/native.js @@ -31,7 +31,7 @@ var addon = require( './../src/addon.node' ); * * @private * @param {number} x - input value -* @returns {Array} S(x) and C(x) +* @returns {Float64Array} S(x) and C(x) * * @example * var v = fresnel( 0.0 );