Skip to content

Commit 941d648

Browse files
authored
docs: move comment
Signed-off-by: Athan <[email protected]>
1 parent 48779d4 commit 941d648

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
@@ -70,8 +70,7 @@ tape( 'a module instance `main` method calculates the population variance of a s
7070

7171
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
7272
y = mod.main( 12, 0, xp, 1 );
73-
// 6 NaNs ignored => N=6
74-
t.strictEqual( y, 53.5/(12-6), 'returns expected value' );
73+
t.strictEqual( y, 53.5/(12-6), 'returns expected value' ); // 6 NaNs ignored => N=6
7574

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

0 commit comments

Comments
 (0)