diff --git a/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.js b/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.js index 8483e2f335e0..e443a3507266 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.js +++ b/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.js @@ -208,10 +208,10 @@ tape( 'the function supports an offset parameter', function test( t ) { -2.0, 3.0, // 0 -4.0, // 0 - 0.0, - 0.0, - 5.0, // 1 - 6.0, // 1 + 0.0, // 1 + 0.0, // 1 + 5.0, + 6.0, 0.0, 0.0, 0.0, @@ -222,10 +222,10 @@ tape( 'the function supports an offset parameter', function test( t ) { -2.0, 8.0, // 0 -9.0, // 0 - 5.0, - -5.0, 5.0, // 1 - 6.0, // 1 + -5.0, // 1 + 5.0, + 6.0, 0.0, 0.0, 0.0, diff --git a/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.native.js b/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.native.js index a9501c70d022..08f33ef7924d 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.native.js +++ b/lib/node_modules/@stdlib/blas/ext/base/zapx/test/test.ndarray.native.js @@ -217,10 +217,10 @@ tape( 'the function supports an offset parameter', opts, function test( t ) { -2.0, 3.0, // 0 -4.0, // 0 - 0.0, - 0.0, - 5.0, // 1 - 6.0, // 1 + 0.0, // 1 + 0.0, // 1 + 5.0, + 6.0, 0.0, 0.0, 0.0, @@ -231,10 +231,10 @@ tape( 'the function supports an offset parameter', opts, function test( t ) { -2.0, 8.0, // 0 -9.0, // 0 - 5.0, - -5.0, 5.0, // 1 - 6.0, // 1 + -5.0, // 1 + 5.0, + 6.0, 0.0, 0.0, 0.0, diff --git a/lib/node_modules/@stdlib/number/float32/base/normalize/docs/repl.txt b/lib/node_modules/@stdlib/number/float32/base/normalize/docs/repl.txt index 64293208f7e9..61f405d75cd9 100644 --- a/lib/node_modules/@stdlib/number/float32/base/normalize/docs/repl.txt +++ b/lib/node_modules/@stdlib/number/float32/base/normalize/docs/repl.txt @@ -39,8 +39,8 @@ {{alias}}.assign( x, out, stride, offset ) - Returns a normal number `y` and exponent `exp` satisfying `x = y * 2^exp` and - assigns results to a provided output array. + Returns a normal number `y` and exponent `exp` satisfying `x = y * 2^exp` + and assigns results to a provided output array. The first element of the returned array corresponds to `y` and the second to `exp`. diff --git a/lib/node_modules/@stdlib/utils/define-properties/docs/repl.txt b/lib/node_modules/@stdlib/utils/define-properties/docs/repl.txt index bee36704b157..4fab1c46c7bb 100644 --- a/lib/node_modules/@stdlib/utils/define-properties/docs/repl.txt +++ b/lib/node_modules/@stdlib/utils/define-properties/docs/repl.txt @@ -34,7 +34,8 @@ - set: function which serves as a setter for the property, or, if no setter, undefined. When assigning a property value, a setter function is called with one argument (the value being assigned to the property) and with the `this` - context set to the object through which the property is assigned. Default: undefined. + context set to the object through which the property is + assigned. Default: undefined. Parameters ----------