We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 388780c commit cb81bb2Copy full SHA for cb81bb2
lib/node_modules/@stdlib/strided/base/nullary/README.md
@@ -91,7 +91,7 @@ var x0 = new Float64Array( [ -1.0, -2.0, -3.0, -4.0, -5.0, -6.0 ] );
91
var x1 = new Float64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 ); // start at 2nd element
92
93
nullary( [ x1 ], [ 3 ], [ 1 ], fill );
94
-// x0 => <Float64Array>[ -1.0, 3.0, -3.0, 3.0, -5.0, -6.0 ]
+// x0 => <Float64Array>[ -1.0, 3.0, 3.0, 3.0, -5.0, -6.0 ]
95
```
96
97
#### nullary.ndarray( arrays, shape, strides, offsets, fcn )
0 commit comments