diff --git a/lib/node_modules/@stdlib/array/uint64/lib/main.js b/lib/node_modules/@stdlib/array/uint64/lib/main.js index c4c2be8f107c..e366fe395f55 100644 --- a/lib/node_modules/@stdlib/array/uint64/lib/main.js +++ b/lib/node_modules/@stdlib/array/uint64/lib/main.js @@ -621,13 +621,13 @@ setReadOnly( Uint64Array.prototype, 'BYTES_PER_ELEMENT', Uint64Array.BYTES_PER_E * * // Iterate over the key-value pairs... * var v = it.next().value; -* // returns [ 0, [ 1n ] ] +* // returns [ 0, [ 1n ] ] * * v = it.next().value; -* // returns [ 1, [ 2n ] ] +* // returns [ 1, [ 2n ] ] * * v = it.next().value; -* // returns [ 2, [ 3n ] ] +* // returns [ 2, [ 3n ] ] * * var bool = it.next().done; * // returns true @@ -673,7 +673,7 @@ setReadOnly( Uint64Array.prototype, 'entries', function entries() { }; } return { - 'value': [ i, new getUint64( buffer, i ) ], + 'value': [ i, getUint64( buffer, i ) ], 'done': false }; } diff --git a/lib/node_modules/@stdlib/ml/base/loss/float64/hinge-gradient/README.md b/lib/node_modules/@stdlib/ml/base/loss/float64/hinge-gradient/README.md index 98dcd43b2451..2a3bbf8c6ad1 100644 --- a/lib/node_modules/@stdlib/ml/base/loss/float64/hinge-gradient/README.md +++ b/lib/node_modules/@stdlib/ml/base/loss/float64/hinge-gradient/README.md @@ -99,7 +99,7 @@ v = hingeGradient( 2.4, 1.0, 0.453, 0.76 ); ## Notes -- When `t = 1.0`, we get the loss used by SVM, where as when `t = 0.0`, we get the loss used by the Perceptron. +- When `t = 1.0`, we get the loss used by SVM; whereas, when `t = 0.0`, we get the loss used by the Perceptron.