Skip to content

Commit

Permalink
style: fix missing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Aug 3, 2024
1 parent 4f98407 commit 2b123f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/zaxpy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Scales values from `zx` by `za` and adds the result to `zy`.

```javascript
var Complex128Array = require( '@stdlib/array/complex128' );
var Complex128 = require('@stdlib/complex/float64/ctor');
var Complex128 = require( '@stdlib/complex/float64/ctor' );
var real = require( '@stdlib/complex/float64/real' );
var imag = require( '@stdlib/complex/float64/imag' );

Expand Down

1 comment on commit 2b123f6

@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/caxpy $\color{red}285/287$
$\color{green}+99.30\%$
$\color{red}13/14$
$\color{green}+92.86\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{red}285/287$
$\color{green}+99.30\%$
blas/base/zaxpy $\color{red}285/287$
$\color{green}+99.30\%$
$\color{red}13/14$
$\color{green}+92.86\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{red}285/287$
$\color{green}+99.30\%$

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

Please sign in to comment.