Skip to content

Commit

Permalink
test: fix descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Aug 15, 2024
1 parent 2f4fa56 commit 84cb3ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/sspr/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ import sspr = require( './index' );
sspr.ndarray( 'row-major', 'upper', 10, 1.0, x, ( x: number ): number => x, 0, A, 1, 0 ); // $ExpectError
}

// The compiler throws an error if the function is provided an seventh argument which is not a number...
// The compiler throws an error if the function is provided a seventh argument which is not a number...
{
const x = new Float32Array( 10 );
const A = new Float32Array( 55 );
Expand All @@ -262,7 +262,7 @@ import sspr = require( './index' );
sspr.ndarray( 'row-major', 'upper', 10, 1.0, x, 1, ( x: number ): number => x, A, 1, 0 ); // $ExpectError
}

// The compiler throws an error if the function is provided a eighth argument which is not a Float32Array...
// The compiler throws an error if the function is provided an eighth argument which is not a Float32Array...
{
const x = new Float32Array( 10 );

Expand All @@ -277,7 +277,7 @@ import sspr = require( './index' );
sspr.ndarray( 'row-major', 'upper', 10, 1.0, x, 1, 0, ( x: number ): number => x, 1, 0 ); // $ExpectError
}

// The compiler throws an error if the function is provided an ninth argument which is not a number...
// The compiler throws an error if the function is provided a ninth argument which is not a number...
{
const x = new Float32Array( 10 );
const A = new Float32Array( 55 );
Expand Down

0 comments on commit 84cb3ac

Please sign in to comment.