Skip to content

Commit e79e0f3

Browse files
authored
Some fixes
Signed-off-by: Vinit Pandit <[email protected]>
1 parent 925f3f7 commit e79e0f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/svarianceyc/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
> {{alias}}( x.length, 1, x, 1 )
4747
~4.3333
4848

49-
// Using `N` and `stride` parameters:
49+
// Using `N` and stride parameters:
5050
> x = new {{alias:@stdlib/array/float32}}( [ -2.0, 1.0, 1.0, -5.0, 2.0, -1.0 ] );
5151
> {{alias}}( 3, 1, x, 2 )
5252
~4.3333

lib/node_modules/@stdlib/stats/base/svarianceyc/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
*
3939
* var x = new Float32Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0 ] );
4040
*
41-
* var v = svarianceyc.ndarray( x.length, 1, x, 2, 1 );
41+
* var v = svarianceyc.ndarray( 4, 1, x, 2, 1 );
4242
* // returns 6.25
4343
*/
4444

0 commit comments

Comments
 (0)