Skip to content

Commit 48779d4

Browse files
authored
style: move comment
Signed-off-by: Athan <[email protected]>
1 parent 7e0879e commit 48779d4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/node_modules/@stdlib/stats/strided/wasm/dnanvariancewd/test/test.module.main.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,7 @@ tape( 'a module instance `main` method calculates the sample variance of a strid
131131

132132
mod.write( xp, new Float64Array( [ 1.0, NaN, NaN, -2.0, NaN, -4.0, NaN, 5.0, NaN, 0.0, 3.0, NaN ] ) ); // eslint-disable-line max-len
133133
y = mod.main( 12, 1, xp, 1 );
134-
// 6 NaNs ignored => N=6, correction=1 => N-c=5
135-
t.strictEqual( y, 53.5/5, 'returns expected value' );
134+
t.strictEqual( y, 53.5/5, 'returns expected value' ); // 6 NaNs ignored => N=6, correction=1 => N-c=5
136135

137136
mod.write( xp, new Float64Array( [ -4.0, NaN ] ) );
138137
y = mod.main( 2, 1, xp, 1 );

0 commit comments

Comments
 (0)