Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Signed-off-by: Athan <kgryte@gmail.com>
  • Loading branch information
kgryte authored Mar 10, 2024
1 parent 8dbb6ee commit 1125d1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/ext/base/dsum/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ var Float64Array = require( '@stdlib/array/float64' );
var x0 = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0 ] );
var x1 = new Float64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 ); // start at 2nd element

var v = dsum( 3, x1, 2 );
var v = dsum( 4, x1, 2 );
// returns 1.0
```

Expand Down

0 comments on commit 1125d1b

Please sign in to comment.