Skip to content

Commit

Permalink
docs: fix examples
Browse files Browse the repository at this point in the history
PR-URL: #2360
Co-authored-by: Athan Reines <kgryte@gmail.com>
Reviewed-by: Athan Reines <kgryte@gmail.com> 
Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com>
  • Loading branch information
stdlib-bot and kgryte authored Jun 12, 2024
1 parent ce961d9 commit ce25d7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ interface Namespace {
*
* ns.cscal( 3, ca, cx, 1 );
*
* var z = cx.get( 1 );
* var z = cx.get( 0 );
* // returns <Complex64>
*
* var re = realf( z );
Expand All @@ -164,7 +164,7 @@ interface Namespace {
*
* ns.cscal.ndarray( 2, ca, cx, 1, 0 );
*
* var z = cx.get( 1 );
* var z = cx.get( 0 );
* // returns <Complex64>
*
* var re = realf( z );
Expand Down

1 comment on commit ce25d7e

@stdlib-bot
Copy link
Contributor Author

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 $\color{green}438/438$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}438/438$
$\color{green}+100.00\%$

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

Please sign in to comment.