Skip to content

Commit c72828e

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent e31df35 commit c72828e

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/variancepn/docs/types

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/variancepn/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ interface Routine {
4444
* @example
4545
* var x = [ 1.0, -2.0, 2.0 ];
4646
*
47-
* var v = variancepn( x.length, 1, x, 1, 0 );
47+
* var v = variancepn( x.length, 1, x, 1 );
4848
* // returns ~4.3333
4949
*/
50-
( N: number, correction: number, x: NumericArray | InputArray, strideX: number ): number;
50+
( N: number, correction: number, x: InputArray, strideX: number ): number;
5151

5252
/**
5353
* Computes the variance of a strided array using a two-pass algorithm and alternative indexing semantics.

0 commit comments

Comments
 (0)