Skip to content

Commit

Permalink
docs: use correct types in blas/ext/base/gsumkbn
Browse files Browse the repository at this point in the history
PR-URL: #4961
Reviewed-by: Athan Reines <[email protected]>
  • Loading branch information
aayush0325 authored Jan 31, 2025
1 parent 14f3f1a commit 3665b8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ interface Routine {
* var v = gsumkbn.ndarray( x.length, x, 1, 0 );
* // returns 1.0
*/
ndarray( N: number, x: NumericArray, strideX: number, offsetX: number ): number;
ndarray( N: number, x: InputArray, strideX: number, offsetX: number ): number;
}

/**
Expand Down

1 comment on commit 3665b8b

@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/ext/base/gsumkbn $\color{red}303/307$
$\color{green}+98.70\%$
$\color{red}20/22$
$\color{green}+90.91\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{red}303/307$
$\color{green}+98.70\%$

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

Please sign in to comment.