Skip to content

Commit 8f4449d

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

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dnanvariancepn

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dnanvariancepn/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ var dnanvariancepn = require( '@stdlib/stats/base/dnanvariancepn' );
100100

101101
#### dnanvariancepn( N, correction, x, strideX )
102102

103-
Computes the [variance][variance] of a double-precision floating-point strided array `x` ignoring `NaN` values and using a two-pass algorithm.
103+
Computes the [variance][variance] of a double-precision floating-point strided array ignoring `NaN` values and using a two-pass algorithm.
104104

105105
```javascript
106106
var Float64Array = require( '@stdlib/array/float64' );
@@ -244,7 +244,7 @@ console.log( v );
244244

245245
#### stdlib_strided_dnanvariancepn( N, correction, \*X, strideX )
246246

247-
Computes the [variance][variance] of a double-precision floating-point strided array `x` ignoring `NaN` values and using a two-pass algorithm.
247+
Computes the [variance][variance] of a double-precision floating-point strided array ignoring `NaN` values and using a two-pass algorithm.
248248

249249
```c
250250
const double x[] = { 1.0, -2.0, 0.0/0.0, 2.0 };

0 commit comments

Comments
 (0)