Skip to content

Commit

Permalink
docs: fix descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Oct 3, 2024
1 parent 0010618 commit 0441176
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/base/isamax/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ int idx = c_isamax( 5, x, 1 );
The function accepts the following arguments:
- **N**: `[in] CBLAS_INT` number of indexed elements.
- **X**: `[in] float*` first input array.
- **X**: `[in] float*` input array.
- **strideX**: `[in] CBLAS_INT` index increment for `X`.
```c
Expand All @@ -204,7 +204,7 @@ int idx = c_isamax_ndarray( 5, x, 1, 0 );
The function accepts the following arguments:
- **N**: `[in] CBLAS_INT` number of indexed elements.
- **X**: `[in] float*` first input array.
- **X**: `[in] float*` input array.
- **strideX**: `[in] CBLAS_INT` index increment for `X`.
- **offsetX**: `[in] CBLAS_INT` starting index for `X`.
Expand Down

1 comment on commit 0441176

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
blas/base/dswap-wasm $\color{green}662/662$
$\color{green}+100.00\%$
$\color{green}17/17$
$\color{green}+100.00\%$
$\color{green}6/6$
$\color{green}+100.00\%$
$\color{green}662/662$
$\color{green}+100.00\%$
blas/base/isamax $\color{green}369/369$
$\color{green}+100.00\%$
$\color{green}20/20$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}369/369$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.