Skip to content

Commit a1e6d14

Browse files
authored
style: add missing space
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 78decbc commit a1e6d14

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/stats/base/ndarray/dnanmskminabs/test

lib/node_modules/@stdlib/stats/base/ndarray/dnanmskminabs/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ tape( 'the function calculates the minimum absolute value of a one-dimensional n
7474
v = dnanmskminabs( [ vector( 'float64', x, x.length, 1, 0 ), vector( 'uint8', mask, mask.length, 1, 0 ) ] );
7575
t.strictEqual( v, 4.0, 'returns expected value' );
7676

77-
x = new Float64Array( [-0.0, 0.0, NaN, -0.0 ] );
77+
x = new Float64Array( [ -0.0, 0.0, NaN, -0.0 ] );
7878
mask = new Uint8Array( [ 0, 0, 0, 0 ] );
7979
v = dnanmskminabs( [ vector( 'float64', x, x.length, 1, 0 ), vector( 'uint8', mask, mask.length, 1, 0 ) ] );
8080
t.strictEqual( v, 0.0, 'returns expected value' );

0 commit comments

Comments
 (0)