Skip to content

Commit 2aa6f9b

Browse files
authored
Update lib/node_modules/@stdlib/stats/base/stdevpn/docs/types/test.ts
Signed-off-by: Gururaj Gurram <[email protected]>
1 parent 26c98eb commit 2aa6f9b

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/stdevpn/docs/types

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/stdevpn/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import stdevpn = require( './index' );
2727
const x = new Float64Array( 10 );
2828

2929
stdevpn( x.length, 1, x, 1 ); // $ExpectType number
30-
stdevpn( x.length, new AccessorArray( x ), 1 ); // $ExpectType number
30+
stdevpn( x.length, 1, new AccessorArray( x ), 1 ); // $ExpectType number
3131
}
3232

3333
// The compiler throws an error if the function is provided a first argument which is not a number...

0 commit comments

Comments
 (0)