Skip to content

Commit 06b1845

Browse files
committed
Fix return value
1 parent bdcf3f5 commit 06b1845

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/gfill-by

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/ext/base/gfill-by/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ function fill( v, i ) {
131131
var x = [ -2.0, 1.0, 3.0, -5.0, 4.0, 0.0, -1.0, -3.0 ];
132132

133133
gfillBy.ndarray( x.length, x, 1, 0, fill );
134-
// x => [ 0.0, 1.0, 6.0, -15.0, 20.0, 0.0, -7.0, -24.0 ]
134+
// x => [ 0.0, 1.0, 6.0, -15.0, 16.0, 0.0, -6.0, -21.0 ]
135135
```
136136

137137
The function has the following additional parameters:

0 commit comments

Comments
 (0)