Skip to content

Commit 6166485

Browse files
committed
chore: fix comments
1 parent 644a461 commit 6166485

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/stats/base/ndarray/ztest2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ var opts = {
129129
'dtype': 'generic'
130130
};
131131

132-
// Create a one-dimensional ndarrays containing pseudorandom numbers drawn from a normal distribution:
132+
// Create one-dimensional ndarrays containing pseudorandom numbers drawn from a normal distribution:
133133
var xbuf = normal( 100, 0.0, 1.0, opts );
134134
var x = new ndarray( opts.dtype, xbuf, [ xbuf.length ], [ 1 ], 0, 'row-major' );
135135
console.log( ndarray2array( x ) );

lib/node_modules/@stdlib/stats/base/ndarray/ztest2/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
Examples
2828
--------
29-
// Create the input ndarray:
29+
// Create input ndarrays:
3030
> var xbuf = [ 4.0, 4.0, 6.0, 6.0, 5.0 ];
3131
> var ybuf = [ 3.0, 3.0, 5.0, 7.0, 7.0 ];
3232
> var dt = 'generic';

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ import { typedndarray, ndarray } from '@stdlib/types/ndarray';
5252
* 'dtype': 'generic'
5353
* };
5454
*
55-
* // Define a one-dimensional input ndarray:
55+
* // Define one-dimensional input ndarrays:
5656
* var xbuf = [ 4.0, 4.0, 6.0, 6.0, 5.0 ];
5757
* var x = new ndarray( opts.dtype, xbuf, [ 5 ], [ 1 ], 0, 'row-major' );
5858
*

lib/node_modules/@stdlib/stats/base/ndarray/ztest2/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var opts = {
3131
'dtype': 'generic'
3232
};
3333

34-
// Create a one-dimensional ndarrays containing pseudorandom numbers drawn from a normal distribution:
34+
// Create one-dimensional ndarrays containing pseudorandom numbers drawn from a normal distribution:
3535
var xbuf = normal( 100, 0.0, 1.0, opts );
3636
var x = new ndarray( opts.dtype, xbuf, [ xbuf.length ], [ 1 ], 0, 'row-major' );
3737
console.log( ndarray2array( x ) );

lib/node_modules/@stdlib/stats/base/ndarray/ztest2/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* 'dtype': 'generic'
3636
* };
3737
*
38-
* // Define a one-dimensional input ndarray:
38+
* // Define one-dimensional input ndarrays:
3939
* var xbuf = [ 4.0, 4.0, 6.0, 6.0, 5.0 ];
4040
* var x = new ndarray( opts.dtype, xbuf, [ 5 ], [ 1 ], 0, 'row-major' );
4141
*

lib/node_modules/@stdlib/stats/base/ndarray/ztest2/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var strided = require( '@stdlib/stats/strided/ztest2' ).ndarray;
6060
* 'dtype': 'generic'
6161
* };
6262
*
63-
* // Define a one-dimensional input ndarray:
63+
* // Define one-dimensional input ndarrays:
6464
* var xbuf = [ 4.0, 4.0, 6.0, 6.0, 5.0 ];
6565
* var x = new ndarray( opts.dtype, xbuf, [ 5 ], [ 1 ], 0, 'row-major' );
6666
*

0 commit comments

Comments
 (0)