Skip to content

Commit 2e43df0

Browse files
authored
chore: address commit comments
PR-URL: #5744 Closes: #5718 Reviewed-by: Philipp Burckhardt <[email protected]>
1 parent 77c2bfd commit 2e43df0

File tree

1 file changed

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

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ Note that indexing is relative to the first index. To introduce an offset, use [
137137

138138
```javascript
139139
var Float64Array = require( '@stdlib/array/float64' );
140-
var x0 = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN, NaN ] ); // eslint-disable-line max-len
140+
141+
var x0 = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN, NaN ] );
141142
var x1 = new Float64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 ); // start at 2nd element
142143

143144
var v = dnanvariancech( 5, 1, x1, 2 );

0 commit comments

Comments
 (0)