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 Jan 28, 2024
1 parent 713b761 commit e3094d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions strided/exponential/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ interface Random extends PRNG {
* // Fill the array with pseudorandom numbers:
* exponential( out.length, [ 2.0 ], 0, out, 1 );
*/
<T = unknown>( N: number, lambda: Collection, sl: number, out: Collection<T>, so: number ): Collection<T | number>;
<T = unknown>( N: number, lambda: Collection<number>, sl: number, out: Collection<T>, so: number ): Collection<T | number>;

/**
* Fills a strided array with pseudorandom numbers drawn from an exponential distribution using alternative indexing semantics.
Expand All @@ -129,7 +129,7 @@ interface Random extends PRNG {
* // Fill the array with pseudorandom numbers:
* exponential.ndarray( out.length, [ 2.0 ], 0, 0, out, 1, 0 );
*/
ndarray<T = unknown>( N: number, lambda: Collection, sl: number, ol: number, out: Collection<T>, so: number, oo: number ): Collection<T | number>;
ndarray<T = unknown>( N: number, lambda: Collection<number>, sl: number, ol: number, out: Collection<T>, so: number, oo: number ): Collection<T | number>;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion strided/exponential/test/test.factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ tape( 'if provided an `N` parameter less than or equal to `0`, the returned func
t.end();
});

tape( 'if provided an `N` parameter less than or equal to `0`, the returned function which leaves the output array unchanged (accessors)', function test( t ) {
tape( 'if provided an `N` parameter less than or equal to `0`, the returned function leaves the output array unchanged (accessors)', function test( t ) {
var expected;
var random;
var out;
Expand Down

0 comments on commit e3094d3

Please sign in to comment.