Skip to content

Commit df88d3c

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent e014630 commit df88d3c

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/sasumpw

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/ext/base/sasumpw/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Computes the sum of absolute values ([_L1_ norm][l1norm]) of single-precision fl
195195
const float x[] = { 1.0f, 2.0f, 3.0f, 4.0f }
196196

197197
float v = stdlib_strided_sasumpw( 4, x, 1 );
198-
// returns 10.0
198+
// returns 10.0f
199199
```
200200
201201
The function accepts the following arguments:
@@ -216,7 +216,7 @@ Computes the sum of absolute values ([_L1_ norm][l1norm]) of single-precision fl
216216
const float x[] = { 1.0f, 2.0f, 3.0f, 4.0f }
217217

218218
float v = stdlib_strided_sasumpw_ndarray( 4, x, 1, 0 );
219-
// returns 10.0
219+
// returns 10.0f
220220
```
221221
222222
The function accepts the following arguments:

0 commit comments

Comments
 (0)