Skip to content
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/ext/base/dfill-equal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ stdlib_strided_dfill_equal( 8, 0.0, 5.0, x, 1 );
The function accepts the following arguments:

- **N**: `[in] CBLAS_INT` number of indexed elements.
- **searchElement**: `[in] double` search Element.
- **searchElement**: `[in] double` search element.
- **alpha**: `[in] double` scalar constant.
- **X**: `[inout] double*` input array.
- **strideX**: `[in] CBLAS_INT` stride length.
Expand All @@ -207,7 +207,7 @@ stdlib_strided_dfill_equal_ndarray( 8, 0.0, 5.0, x, 1, 0 );
The function accepts the following arguments:

- **N**: `[in] CBLAS_INT` number of indexed elements.
- **searchElement**: `[in] double` search Element.
- **searchElement**: `[in] double` search element.
- **alpha**: `[in] double` scalar constant.
- **X**: `[inout] double*` input array.
- **strideX**: `[in] CBLAS_INT` stride length.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var ndarray = require( './ndarray.js' );
* Replaces double-precision floating-point strided array elements equal to a provided search element with a specified scalar constant.
*
* @param {PositiveInteger} N - number of indexed elements
* @param {number} searchElement - scalar constant
* @param {number} searchElement - search element
* @param {number} alpha - scalar constant
* @param {Float64Array} x - input array
* @param {integer} strideX - stride length
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var addon = require( './../src/addon.node' );
* Replaces double-precision floating-point strided array elements equal to a provided search element with a specified scalar constant.
*
* @param {PositiveInteger} N - number of indexed elements
* @param {number} searchElement - scalar constant
* @param {number} searchElement - search element
* @param {number} alpha - scalar constant
* @param {Float64Array} x - input array
* @param {integer} strideX - stride length
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Replaces double-precision floating-point strided array elements equal to a provided search element with a specified scalar constant using alternative indexing semantics.
*
* @param {PositiveInteger} N - number of indexed elements
* @param {number} searchElement - scalar constant
* @param {number} searchElement - search element
* @param {number} alpha - scalar constant
* @param {Float64Array} x - input array
* @param {integer} strideX - stride length
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var addon = require( './../src/addon.node' );
* Replaces double-precision floating-point strided array elements equal to a provided search element with a specified scalar constant using alternative indexing semantics.
*
* @param {PositiveInteger} N - number of indexed elements
* @param {number} searchElement - scalar constant
* @param {number} searchElement - search element
* @param {number} alpha - scalar constant
* @param {Float64Array} x - input array
* @param {integer} strideX - stride length
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/ext/base/dfill-equal/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Replaces double-precision floating-point strided array elements equal to a provided search element with a specified scalar constant.
*
* @param N number of indexed elements
* @param searchElement search Element
* @param searchElement search element
* @param alpha scalar constant
* @param X input array
* @param strideX stride length
Expand All @@ -38,7 +38,7 @@ void API_SUFFIX(stdlib_strided_dfill_equal)( const CBLAS_INT N, const double sea
* Replaces double-precision floating-point strided array elements equal to a provided search element with a specified scalar constant using alternative indexing semantics.
*
* @param N number of indexed elements
* @param searchElement search Element
* @param searchElement search element
* @param alpha scalar constant
* @param X input array
* @param strideX stride length
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* // returns <Object>
*/
function enumerated() {
// NOTE: the following should match the C `loss functions.h` enumeration!!!!
// NOTE: the following should match the C `loss_functions.h` enumeration!!!!
return {
// Penalty is the absolute value of the error whenever the absolute error exceeds epsilon and zero otherwise:
'epsilon-insensitive': 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ tape( 'attached to the main function is an `enum` method to return an object map
];
for ( i = 0; i < o.length; i++ ) {
t.strictEqual( hasOwnProp( obj, o[ i ] ), true, 'has property `' + o[ i ] + '`' );
t.strictEqual( isNonNegativeInteger( obj[ o[i] ] ), true, 'returns expected value' );
t.strictEqual( isNonNegativeInteger( obj[ o[ i ] ] ), true, 'returns expected value' );
}

t.end();
Expand Down