Skip to content

Commit

Permalink
chore: apply review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
aman-095 committed Oct 18, 2024
1 parent 4f8bad3 commit 6bb82bc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ interface Routine extends ModuleWrapper {
*
* var x = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
*
* var out = dnrm2.main( x.length, 5.0, x, 1, y, 1 );
* var out = dnrm2.main( x.length, x, 1 );
* // returns ~7.42
*/
main( N: number, x: Float64Array, strideX: number ): number;
Expand Down Expand Up @@ -278,7 +278,7 @@ interface Routine extends ModuleWrapper {
* mod.write( xptr, oneTo( N, dtype ) );
*
* // Perform computation:
* var out = mod.main( N, 5.0, xptr, 1, yptr, 1 );
* var out = mod.main( N, xptr, 1 );
* // returns ~7.42
*/
Module: ModuleConstructor;
Expand Down

0 comments on commit 6bb82bc

Please sign in to comment.