Skip to content

Commit

Permalink
style: remove extra spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Dec 18, 2023
1 parent 5f1953d commit ec7c2c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/array/complex64/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -894,9 +894,9 @@ setReadOnly( Complex64Array.prototype, 'entries', function entries() {
*
* var arr = new Complex64Array( 3 );
*
* arr.set( [ 1.0 , 1.0 ], 0 );
* arr.set( [ 2.0 , 2.0 ], 1 );
* arr.set( [ 3.0 , 3.0 ], 2 );
* arr.set( [ 1.0, 1.0 ], 0 );
* arr.set( [ 2.0, 2.0 ], 1 );
* arr.set( [ 3.0, 3.0 ], 2 );
*
* var bool = arr.every( predicate );
* // returns true
Expand Down

1 comment on commit ec7c2c3

@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
array/complex64 $\color{red}1475/1476$
$\color{green}+99.93\%$
$\color{red}243/245$
$\color{green}+99.18\%$
$\color{green}24/24$
$\color{green}+100.00\%$
$\color{red}1475/1476$
$\color{green}+99.93\%$

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

Please sign in to comment.