Skip to content

Commit f31a231

Browse files
committed
docs: fix method name
1 parent 50ba55b commit f31a231

15 files changed

Lines changed: 15 additions & 15 deletions

File tree

lib/node_modules/@stdlib/random/strided/arcsine/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* var out = new Float64Array( 10 );
4242
*
4343
* // Fill the array with pseudorandom numbers:
44-
* arcsine.factory( out.length, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 1, 0 );
44+
* arcsine.ndarray( out.length, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 1, 0 );
4545
*/
4646

4747
// MODULES //

lib/node_modules/@stdlib/random/strided/beta/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* var out = new Float64Array( 10 );
4242
*
4343
* // Fill the array with pseudorandom numbers:
44-
* beta.factory( out.length, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 1, 0 );
44+
* beta.ndarray( out.length, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 1, 0 );
4545
*/
4646

4747
// MODULES //

lib/node_modules/@stdlib/random/strided/betaprime/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* var out = new Float64Array( 10 );
4242
*
4343
* // Fill the array with pseudorandom numbers:
44-
* betaprime.factory( out.length, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 1, 0 );
44+
* betaprime.ndarray( out.length, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 1, 0 );
4545
*/
4646

4747
// MODULES //

lib/node_modules/@stdlib/random/strided/cosine/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* var out = new Float64Array( 10 );
4242
*
4343
* // Fill the array with pseudorandom numbers:
44-
* cosine.factory( out.length, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 1, 0 );
44+
* cosine.ndarray( out.length, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 1, 0 );
4545
*/
4646

4747
// MODULES //

lib/node_modules/@stdlib/random/strided/discrete-uniform/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* var out = new Float64Array( 10 );
4242
*
4343
* // Fill the array with pseudorandom numbers:
44-
* discreteUniform.factory( out.length, [ -10 ], 0, 0, [ 10 ], 0, 0, out, 1, 0 );
44+
* discreteUniform.ndarray( out.length, [ -10 ], 0, 0, [ 10 ], 0, 0, out, 1, 0 );
4545
*/
4646

4747
// MODULES //

lib/node_modules/@stdlib/random/strided/exponential/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* var out = new Float64Array( 10 );
4242
*
4343
* // Fill the array with pseudorandom numbers:
44-
* exponential.factory( out.length, [ 2.0 ], 0, 0, out, 1, 0 );
44+
* exponential.ndarray( out.length, [ 2.0 ], 0, 0, out, 1, 0 );
4545
*/
4646

4747
// MODULES //

lib/node_modules/@stdlib/random/strided/gamma/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* var out = new Float64Array( 10 );
4242
*
4343
* // Fill the array with pseudorandom numbers:
44-
* gamma.factory( out.length, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 1, 0 );
44+
* gamma.ndarray( out.length, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 1, 0 );
4545
*/
4646

4747
// MODULES //

lib/node_modules/@stdlib/random/strided/invgamma/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* var out = new Float64Array( 10 );
4242
*
4343
* // Fill the array with pseudorandom numbers:
44-
* invgamma.factory( out.length, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 1, 0 );
44+
* invgamma.ndarray( out.length, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 1, 0 );
4545
*/
4646

4747
// MODULES //

lib/node_modules/@stdlib/random/strided/lognormal/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* var out = new Float64Array( 10 );
4242
*
4343
* // Fill the array with pseudorandom numbers:
44-
* lognormal.factory( out.length, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 1, 0 );
44+
* lognormal.ndarray( out.length, [ 2.0 ], 0, 0, [ 5.0 ], 0, 0, out, 1, 0 );
4545
*/
4646

4747
// MODULES //

lib/node_modules/@stdlib/random/strided/minstd-shuffle/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* var out = new Float64Array( 10 );
4242
*
4343
* // Fill the array with pseudorandom numbers:
44-
* minstd.factory( out.length, out, 1, 0 );
44+
* minstd.ndarray( out.length, out, 1, 0 );
4545
*
4646
* @example
4747
* var Float64Array = require( '@stdlib/array/float64' );

0 commit comments

Comments
 (0)