Skip to content

Commit 366925e

Browse files
committed
chore: minor clean-up
1 parent 15a7123 commit 366925e

File tree

13 files changed

+17
-17
lines changed

13 files changed

+17
-17
lines changed

lib/node_modules/@stdlib/_tools/eslint/rules/first-unit-test/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ tape( 'main export is a function', function test( t ) {
7777

7878
## Examples
7979

80-
<!-- eslint-disable node/no-unpublished-require -->
80+
<!-- eslint-disable node/no-unpublished-require -->
8181

8282
<!-- eslint no-undef: "error" -->
8383

lib/node_modules/@stdlib/_tools/readme/to-html/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ var fpath = resolve( __dirname, '..', 'README.md' );
136136
var opts = {
137137
'title': 'Beep',
138138
'source': 'https://github.com/stdlib-js/stdlib/develop/tools/readme/to-html/lib/index.js',
139-
'append': '<script type="text/javascript">console.log("Beep!");</script>'
139+
'append': '<script type="text/javascript">console.log("Beep!");</script>'
140140
};
141141

142142
convert( fpath, opts, onFinish );

lib/node_modules/@stdlib/blas/base/idamax/examples/c/example.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ int main( void ) {
2323
// Create strided array:
2424
const double x[] = { 1.0, -2.0, 3.0, -4.0, 5.0, -6.0, 7.0, -8.0 };
2525

26-
// Specify the number of element:
26+
// Specify the number of elements:
2727
const int N = 8;
2828

2929
// Specify stride:

lib/node_modules/@stdlib/blas/base/isamax/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ The function accepts the following arguments:
187187
- **strideX**: `[in] CBLAS_INT` index increment for `X`.
188188
189189
```c
190-
CBLAS_INT c_isamax( const CBLAS_INT N, const double *X, const CBLAS_INT strideX );
190+
CBLAS_INT c_isamax( const CBLAS_INT N, const float *X, const CBLAS_INT strideX );
191191
```
192192

193193
#### c_isamax_ndarray( N, \*X, strideX, offsetX )
@@ -209,7 +209,7 @@ The function accepts the following arguments:
209209
- **offsetX**: `[in] CBLAS_INT` starting index for `X`.
210210
211211
```c
212-
CBLAS_INT c_isamax_ndarray( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX );
212+
CBLAS_INT c_isamax_ndarray( const CBLAS_INT N, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX );
213213
```
214214

215215
</section>
@@ -238,7 +238,7 @@ int main( void ) {
238238
// Create strided array:
239239
const float x[] = { 1.0f, -2.0f, 3.0f, -4.0f, 5.0f, -6.0f, 7.0f, -8.0f };
240240

241-
// Specify the number of element:
241+
// Specify the number of elements:
242242
const int N = 8;
243243

244244
// Specify stride:

lib/node_modules/@stdlib/blas/base/isamax/examples/c/example.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ int main( void ) {
2323
// Create strided array:
2424
const float x[] = { 1.0f, -2.0f, 3.0f, -4.0f, 5.0f, -6.0f, 7.0f, -8.0f };
2525

26-
// Specify the number of element:
26+
// Specify the number of elements:
2727
const int N = 8;
2828

2929
// Specify stride:

lib/node_modules/@stdlib/blas/ext/base/snansumors/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The function has the following parameters:
5555
- **x**: input [`Float32Array`][@stdlib/array/float32].
5656
- **strideX**: stride length for `x`.
5757

58-
The `N` and stride parameters determine which elements in the strided array are accessed at runtime. For example, to compute the sum of every other element:
58+
The `N` and stride parameters determine which elements in the strided array are accessed at runtime. For example, to compute the sum of every other element:
5959

6060
```javascript
6161
var Float32Array = require( '@stdlib/array/float32' );

lib/node_modules/@stdlib/random/base/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Attached to each PRNG are the following properties:
9898
- **seed**: the value used to seed the PRNG.
9999
- **seedLength**: the length of the PRNG seed.
100100
- **state**: the PRNG state.
101-
- **stateLength**: the length of the PRNG state.
101+
- **stateLength**: the length of the PRNG state.
102102
- **byteLength**: the size of the PRNG state.
103103
- **PRNG**: the underlying pseudorandom number generator.
104104

lib/node_modules/@stdlib/stats/base/dists/negative-binomial/cdf/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ F(x;r,p)=1-I_p(x+1,r)
3939

4040
<!-- </equation> -->
4141

42-
where `r` is the number of successes until experiment is stopped, `p` is the success probability in each trial and `I` is the [lower regularized incomplete beta function][incomplete-beta]. The random variable `X` denotes the number of failures until the `r` success is reached.
42+
where `r` is the number of successes until experiment is stopped, `p` is the success probability in each trial and `I` is the [lower regularized incomplete beta function][incomplete-beta]. The random variable `X` denotes the number of failures until the `r` success is reached.
4343

4444
</section>
4545

@@ -116,7 +116,7 @@ y = cdf( 2.0, 20, 1.5 );
116116

117117
#### cdf.factory( r, p )
118118

119-
Returns a function for evaluating the [cumulative distribution function][cdf] of a [negative binomial][negative-binomial-distribution] distribution with number of successes until experiment is stopped `r` and success probability `p`.
119+
Returns a function for evaluating the [cumulative distribution function][cdf] of a [negative binomial][negative-binomial-distribution] distribution with number of successes until experiment is stopped `r` and success probability `p`.
120120

121121
```javascript
122122
var mycdf = cdf.factory( 10, 0.5 );

lib/node_modules/@stdlib/stats/base/dists/negative-binomial/mgf/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ y = mgf( 0.2, 20, 1.5 );
121121

122122
#### mgf.factory( r, p )
123123

124-
Returns a function for evaluating the [moment-generating function][mgf] of a [negative binomial][negative-binomial-distribution] distribution with number of successes until experiment is stopped `r` and success probability `p`.
124+
Returns a function for evaluating the [moment-generating function][mgf] of a [negative binomial][negative-binomial-distribution] distribution with number of successes until experiment is stopped `r` and success probability `p`.
125125

126126
```javascript
127127
var myMGF = mgf.factory( 4.3, 0.4 );

lib/node_modules/@stdlib/stats/base/dists/truncated-normal/pdf/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ f(x;\mu,\sigma,a,b) = \begin{cases} \frac{\frac{1}{\sigma}\phi(\frac{x - \mu}{\
4040

4141
<!-- </equation> -->
4242

43-
where `Phi` and `phi` denote the [cumulative distribution function][cdf] and [density function][pdf] of the [normal][normal-distribution] distribution, respectively, `mu` is the location and `sigma > 0` is the scale parameter of the distribution. `a` and `b` are the minimum and maximum support.
43+
where `Phi` and `phi` denote the [cumulative distribution function][cdf] and [density function][pdf] of the [normal][normal-distribution] distribution, respectively, `mu` is the location and `sigma > 0` is the scale parameter of the distribution. `a` and `b` are the minimum and maximum support.
4444

4545
</section>
4646

lib/node_modules/@stdlib/stats/strided/dsmeanpw/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -258,10 +258,10 @@ int main( void ) {
258258
const float x[] = { 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f };
259259

260260
// Specify the number of elements:
261-
const int N = 4;
261+
const int N = 4;
262262

263263
// Specify the stride length:
264-
const int strideX = 2;
264+
const int strideX = 2;
265265

266266
// Compute the arithmetic mean:
267267
double v = stdlib_strided_dsmeanpw( N, x, strideX );

lib/node_modules/@stdlib/stats/ttest2/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var ttest2 = require( '@stdlib/stats/ttest2' );
3232

3333
#### ttest2( x, y\[, opts] )
3434

35-
By default, the function performs a two-sample t-test for the null hypothesis that the data in [arrays][mdn-array] or [typed arrays][mdn-typed-array] `x` and `y` is independently drawn from normal distributions with _equal_ means.
35+
By default, the function performs a two-sample t-test for the null hypothesis that the data in [arrays][mdn-array] or [typed arrays][mdn-typed-array] `x` and `y` is independently drawn from normal distributions with _equal_ means.
3636

3737
```javascript
3838
// Student's sleep data:

lib/node_modules/@stdlib/stats/vartest/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var vartest = require( '@stdlib/stats/vartest' );
3232

3333
#### vartest( x, y\[, opts] )
3434

35-
By default, the function performs a two-sample F-test for the null hypothesis that the data in [arrays][mdn-array] or [typed arrays][mdn-typed-array] `x` and `y` is independently drawn from normal distributions with _equal_ variances.
35+
By default, the function performs a two-sample F-test for the null hypothesis that the data in [arrays][mdn-array] or [typed arrays][mdn-typed-array] `x` and `y` is independently drawn from normal distributions with _equal_ variances.
3636

3737
```javascript
3838
var x = [ 610, 610, 550, 590, 565, 570 ];

0 commit comments

Comments
 (0)