Skip to content

Commit c87e3fb

Browse files
committed
Auto-generated commit
1 parent 9b63f6d commit c87e3fb

File tree

5 files changed

+2
-10
lines changed

5 files changed

+2
-10
lines changed

docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
If provided `mu` and `s`, the returned function returns random variates
6262
drawn from the specified distribution.
6363

64-
If not provided `mu` and `s`, the returned function requires that both
65-
`mu` and `s` be provided at each invocation.
64+
If not provided `mu` and `s`, the returned function requires that both`mu`
65+
and `s` be provided at each invocation.
6666

6767
The returned function accepts the following options:
6868

lib/factory.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,13 @@ var validate = require( './validate.js' );
5656
* @throws {Error} must provide a valid state
5757
* @returns {Function} function for creating arrays
5858
*
59-
*
6059
* @example
6160
* var cosine = factory( 2.0, 5.0 );
6261
* // returns <Function>
6362
*
6463
* var arr = cosine( 10 );
6564
* // returns <Float64Array>
6665
*
67-
*
6866
* @example
6967
* var cosine = factory( 2.0, 5.0 );
7068
* // returns <Function>

lib/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
* var arr = cosine( 10, 2.0, 5.0 );
3131
* // returns <Float64Array>
3232
*
33-
*
3433
* @example
3534
* var cosine = require( '@stdlib/random-array-cosine' );
3635
*
@@ -39,7 +38,6 @@
3938
* });
4039
* // returns [...]
4140
*
42-
*
4341
* @example
4442
* var cosine = require( '@stdlib/random-array-cosine' );
4543
*
@@ -49,7 +47,6 @@
4947
* var arr = rand( 10 );
5048
* // returns <Float64Array>
5149
*
52-
*
5350
* @example
5451
* var cosine = require( '@stdlib/random-array-cosine' );
5552
*

lib/main.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,10 @@ var factory = require( './factory.js' );
4040
* @throws {TypeError} must provide valid options
4141
* @returns {(Array|TypedArray)} output array
4242
*
43-
*
4443
* @example
4544
* var arr = cosine( 10, 2.0, 5.0 );
4645
* // returns <Float64Array>
4746
*
48-
*
4947
* @example
5048
* var arr = cosine( 10, 2.0, 5.0, {
5149
* 'dtype': 'generic'

lib/validate.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ DTYPES.push( 'generic' );
4343
* @param {string} [options.dtype] - output array data type
4444
* @returns {(Error|null)} null or an error object
4545
*
46-
*
4746
* @example
4847
* var opts = {};
4948
* var options = {

0 commit comments

Comments
 (0)