Skip to content

Commit cb81bb2

Browse files
committed
Fix return value
1 parent 388780c commit cb81bb2

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/strided/base/nullary

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/strided/base/nullary/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ var x0 = new Float64Array( [ -1.0, -2.0, -3.0, -4.0, -5.0, -6.0 ] );
9191
var x1 = new Float64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 ); // start at 2nd element
9292

9393
nullary( [ x1 ], [ 3 ], [ 1 ], fill );
94-
// x0 => <Float64Array>[ -1.0, 3.0, -3.0, 3.0, -5.0, -6.0 ]
94+
// x0 => <Float64Array>[ -1.0, 3.0, 3.0, 3.0, -5.0, -6.0 ]
9595
```
9696

9797
#### nullary.ndarray( arrays, shape, strides, offsets, fcn )

0 commit comments

Comments
 (0)