diff --git a/lib/node_modules/@stdlib/number/uint32/base/add/benchmark/c/benchmark.c b/lib/node_modules/@stdlib/number/uint32/base/add/benchmark/c/benchmark.c index 714b24b63363..644018a2daff 100644 --- a/lib/node_modules/@stdlib/number/uint32/base/add/benchmark/c/benchmark.c +++ b/lib/node_modules/@stdlib/number/uint32/base/add/benchmark/c/benchmark.c @@ -101,7 +101,7 @@ static uint32_t add( const uint32_t x, const uint32_t y ) { static double benchmark( void ) { uint32_t x[ 100 ]; double elapsed; - double y; + uint32_t y; double t; int i; diff --git a/lib/node_modules/@stdlib/number/uint32/base/add/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/number/uint32/base/add/benchmark/c/native/benchmark.c index 8ae7bb5845fd..5ca2a7ee1ee2 100644 --- a/lib/node_modules/@stdlib/number/uint32/base/add/benchmark/c/native/benchmark.c +++ b/lib/node_modules/@stdlib/number/uint32/base/add/benchmark/c/native/benchmark.c @@ -93,7 +93,7 @@ static double rand_double( void ) { static double benchmark( void ) { uint32_t x[ 100 ]; double elapsed; - double y; + uint32_t y; double t; int i; diff --git a/lib/node_modules/@stdlib/number/uint32/base/add/lib/main.js b/lib/node_modules/@stdlib/number/uint32/base/add/lib/main.js index 5fcbb2c6f537..0a9df64dd08d 100644 --- a/lib/node_modules/@stdlib/number/uint32/base/add/lib/main.js +++ b/lib/node_modules/@stdlib/number/uint32/base/add/lib/main.js @@ -29,9 +29,9 @@ * - `+`: summation is exact as IEEE-754 integer addition of two unsigned 32-bit integers fits inside 53-bit range. * - `>>> 0`: keep the low 32 bits. * -* @param {integer} x - first input value -* @param {integer} y - second input value -* @returns {integer} sum +* @param {uinteger} x - first input value +* @param {uinteger} y - second input value +* @returns {uinteger} sum * * @example * var v = add( 1>>>0, 5>>>0 ); diff --git a/lib/node_modules/@stdlib/number/uint32/base/add/lib/native.js b/lib/node_modules/@stdlib/number/uint32/base/add/lib/native.js index bc97be1da67d..3f52e9d9950b 100644 --- a/lib/node_modules/@stdlib/number/uint32/base/add/lib/native.js +++ b/lib/node_modules/@stdlib/number/uint32/base/add/lib/native.js @@ -29,9 +29,9 @@ var addon = require( './../src/addon.node' ); * Computes the sum of two unsigned 32-bit integers `x` and `y`. * * @private -* @param {integer} x - first input value -* @param {integer} y - second input value -* @returns {integer} sum +* @param {uinteger} x - first input value +* @param {uinteger} y - second input value +* @returns {uinteger} sum * * @example * var v = add( 1>>>0, 5>>>0 );