Skip to content

Commit 5c60c7a

Browse files
committed
Add missing spaces
1 parent 27532a1 commit 5c60c7a

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/incr/mstdev/test

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/incr/mstdev/test/test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ tape( 'if not provided an input value, the accumulator function returns the curr
210210
}
211211
t.equal( acc(), sqrt( 0.5 ), 'returns current corrected sample standard deviation' );
212212

213-
acc( data[ data.length-1] );
213+
acc( data[ data.length-1 ] );
214214

215215
expected = sqrt( 19.0 );
216216
actual = acc();
@@ -237,7 +237,7 @@ tape( 'if not provided an input value, the accumulator function returns the curr
237237
}
238238
t.equal( acc(), sqrt( 6.5 ), 'returns current unbiased sample variance' );
239239

240-
acc( data[ data.length-1] );
240+
acc( data[ data.length-1 ] );
241241

242242
expected = sqrt( 12.666666666666666 );
243243
actual = acc();

0 commit comments

Comments
 (0)