Skip to content

Commit 6294471

Browse files
committed
Fix array length
1 parent 95984fb commit 6294471

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/strided/base/nullary/examples/accessors.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function fill() {
3232

3333
var N = 10;
3434

35-
var xbuf = filledarray( 0.0, N, 'float32' );
35+
var xbuf = filledarray( 0.0, N*2, 'float32' );
3636
var x = new Complex64Array( xbuf.buffer );
3737
console.log( xbuf );
3838

0 commit comments

Comments
 (0)