Skip to content

Commit 26c98eb

Browse files
authored
Update lib/node_modules/@stdlib/stats/base/stdevpn/docs/types/test.ts
Signed-off-by: Gururaj Gurram <143020143+gururaj1512@users.noreply.github.com>
1 parent c9e2b9f commit 26c98eb

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
@@ -103,7 +103,7 @@ import stdevpn = require( './index' );
103103
const x = new Float64Array( 10 );
104104

105105
stdevpn.ndarray( x.length, 1, x, 1, 0 ); // $ExpectType number
106-
stdevpn( x.length, new AccessorArray( x ), 1 ); // $ExpectType number
106+
stdevpn.ndarray( x.length, 1, new AccessorArray( x ), 1, 0 ); // $ExpectType number
107107
}
108108

109109
// The compiler throws an error if the `ndarray` method is provided a first argument which is not a number...

0 commit comments

Comments
 (0)