Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
*
* ns.dapx.main( 3, 5.0, x, 1 );
* // x => <Float64Array>[ 6.0, 3.0, 7.0 ]
* // x => Float64Array[ 6.0, 3.0, 7.0 ]

Check failure on line 53 in lib/node_modules/@stdlib/blas/ext/base/wasm/docs/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Typed arrays should be documented using instance annotation
*
* @example
* var Float64Array = require( '@stdlib/array/float64' );
*
* var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0 ] );
*
* ns.dapx.ndarray( 4, 5.0, x, 2, 1 );
* // x => <Float64Array>[ 2.0, 6.0, 2.0, 3.0, -2.0, 7.0, 3.0, 9.0 ]
* // x => Float64Array[ 7.0, 6.0, 7.0, 3.0, 3.0, 7.0, 8.0, 9.0 ]

Check failure on line 61 in lib/node_modules/@stdlib/blas/ext/base/wasm/docs/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Typed arrays should be documented using instance annotation
*/
dapx: typeof dapx;

Expand Down
Loading