Skip to content

Commit a94f8c5

Browse files
committed
feat: update blas/ext/base/wasm TypeScript declarations
Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com>
1 parent 4eb9d2a commit a94f8c5

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/wasm/docs/types

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/ext/base/wasm/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ interface Namespace {
5050
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
5151
*
5252
* ns.dapx.main( 3, 5.0, x, 1 );
53-
* // x => <Float64Array>[ 6.0, 3.0, 7.0 ]
53+
* // x => Float64Array[ 6.0, 3.0, 7.0 ]
5454
*
5555
* @example
5656
* var Float64Array = require( '@stdlib/array/float64' );
5757
*
5858
* var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0 ] );
5959
*
6060
* ns.dapx.ndarray( 4, 5.0, x, 2, 1 );
61-
* // x => <Float64Array>[ 2.0, 6.0, 2.0, 3.0, -2.0, 7.0, 3.0, 9.0 ]
61+
* // x => Float64Array[ 7.0, 6.0, 7.0, 3.0, 3.0, 7.0, 8.0, 9.0 ]
6262
*/
6363
dapx: typeof dapx;
6464

0 commit comments

Comments
 (0)