Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 3, 2023
1 parent f031bb9 commit e7a046f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

4 changes: 2 additions & 2 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ interface Routine {
* sinv( x.length, x, 1, y, 1 );
* // y => <Float32Array>[ ~-0.05, -1.0, 0.5, 0.25, ~0.1 ]
*/
( N: number, x: Float32Array, strideX: number, y: Float32Array, strideY: number ): Float32Array; // tslint:disable-line:max-line-length
( N: number, x: Float32Array, strideX: number, y: Float32Array, strideY: number ): Float32Array;

/**
* Computes the multiplicative inverse for each element in a single-precision floating-point strided array `x` and assigns the results to elements in a single-precision floating-point strided array `y` using alternative indexing semantics.
Expand All @@ -64,7 +64,7 @@ interface Routine {
* sinv.ndarray( x.length, x, 1, 0, y, 1, 0 );
* // y => <Float32Array>[ ~-0.05, -1.0, 0.5, 0.25, ~0.1 ]
*/
ndarray( N: number, x: Float32Array, strideX: number, offsetX: number, y: Float32Array, strideY: number, offsetY: number ): Float32Array; // tslint:disable-line:max-line-length
ndarray( N: number, x: Float32Array, strideX: number, offsetX: number, y: Float32Array, strideY: number, offsetY: number ): Float32Array;
}

/**
Expand Down

0 comments on commit e7a046f

Please sign in to comment.