diff --git a/lib/node_modules/@stdlib/random/array/arcsine/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/arcsine/docs/types/index.d.ts index f13b5c1ac848..c797dbb80022 100644 --- a/lib/node_modules/@stdlib/random/array/arcsine/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/arcsine/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = arcsine( 2.0, 5.0, x ); + * var out = arcsine.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/bernoulli/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/bernoulli/docs/types/index.d.ts index e68ef417debf..1875834b094c 100644 --- a/lib/node_modules/@stdlib/random/array/bernoulli/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/bernoulli/docs/types/index.d.ts @@ -185,7 +185,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = bernoulli( 0.5, x ); + * var out = bernoulli.assign( 0.5, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/beta/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/beta/docs/types/index.d.ts index d666a4cb51b8..a3250df561f6 100644 --- a/lib/node_modules/@stdlib/random/array/beta/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/beta/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = beta( 2.0, 5.0, x ); + * var out = beta.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/betaprime/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/betaprime/docs/types/index.d.ts index 9dad7071df0c..470fe4c674ae 100644 --- a/lib/node_modules/@stdlib/random/array/betaprime/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/betaprime/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = betaprime( 2.0, 5.0, x ); + * var out = betaprime.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/binomial/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/binomial/docs/types/index.d.ts index 2b440bf1605e..ede0851a3f6c 100644 --- a/lib/node_modules/@stdlib/random/array/binomial/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/binomial/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = binomial( 17, 0.5, x ); + * var out = binomial.assign( 17, 0.5, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/cauchy/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/cauchy/docs/types/index.d.ts index 0c116917c58b..ed2168204dc2 100644 --- a/lib/node_modules/@stdlib/random/array/cauchy/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/cauchy/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = cauchy( 2.0, 5.0, x ); + * var out = cauchy.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/chi/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/chi/docs/types/index.d.ts index 115e9e329772..db7f6f38bb2a 100644 --- a/lib/node_modules/@stdlib/random/array/chi/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/chi/docs/types/index.d.ts @@ -185,7 +185,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = chi( 2.0, x ); + * var out = chi.assign( 2.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/chisquare/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/chisquare/docs/types/index.d.ts index 4c72da088b9a..5aae0a982e64 100644 --- a/lib/node_modules/@stdlib/random/array/chisquare/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/chisquare/docs/types/index.d.ts @@ -185,7 +185,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = chisquare( 2.0, x ); + * var out = chisquare.assign( 2.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/cosine/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/cosine/docs/types/index.d.ts index 7b815f7ac4f7..759f4d30e6b4 100644 --- a/lib/node_modules/@stdlib/random/array/cosine/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/cosine/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = cosine( 2.0, 5.0, x ); + * var out = cosine.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/discrete-uniform/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/discrete-uniform/docs/types/index.d.ts index 9fc051b9a03d..ff5d477422d3 100644 --- a/lib/node_modules/@stdlib/random/array/discrete-uniform/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/discrete-uniform/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = discreteUniform( -10, 10, x ); + * var out = discreteUniform.assign( -10, 10, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/erlang/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/erlang/docs/types/index.d.ts index 4a8ebe23c0e9..6e446b55f829 100644 --- a/lib/node_modules/@stdlib/random/array/erlang/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/erlang/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = erlang( 2, 5.0, x ); + * var out = erlang.assign( 2, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/exponential/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/exponential/docs/types/index.d.ts index 5a05e03e441e..da6d20880900 100644 --- a/lib/node_modules/@stdlib/random/array/exponential/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/exponential/docs/types/index.d.ts @@ -185,7 +185,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = exponential( 2.0, x ); + * var out = exponential.assign( 2.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/f/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/f/docs/types/index.d.ts index 215e5afb93bf..824d39426708 100644 --- a/lib/node_modules/@stdlib/random/array/f/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/f/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = f( 2.0, 5.0, x ); + * var out = f.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/frechet/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/frechet/docs/types/index.d.ts index 81441023eadf..c1818912a0d2 100644 --- a/lib/node_modules/@stdlib/random/array/frechet/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/frechet/docs/types/index.d.ts @@ -193,7 +193,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = frechet( 2.0, 5.0, 3.0, x ); + * var out = frechet.assign( 2.0, 5.0, 3.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/gamma/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/gamma/docs/types/index.d.ts index 0b3cf67fc846..df2556a66671 100644 --- a/lib/node_modules/@stdlib/random/array/gamma/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/gamma/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = gamma( 2.0, 5.0, x ); + * var out = gamma.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/gumbel/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/gumbel/docs/types/index.d.ts index 7c483ff2e667..b8ae8762dd06 100644 --- a/lib/node_modules/@stdlib/random/array/gumbel/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/gumbel/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = gumbel( 2.0, 5.0, x ); + * var out = gumbel.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/hypergeometric/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/hypergeometric/docs/types/index.d.ts index dfe70eed3938..c84669db2604 100644 --- a/lib/node_modules/@stdlib/random/array/hypergeometric/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/hypergeometric/docs/types/index.d.ts @@ -193,7 +193,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = hypergeometric( 20, 10, 7, x ); + * var out = hypergeometric.assign( 20, 10, 7, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/invgamma/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/invgamma/docs/types/index.d.ts index 1398e1387984..b68b63b4e5b0 100644 --- a/lib/node_modules/@stdlib/random/array/invgamma/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/invgamma/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = invgamma( 2.0, 5.0, x ); + * var out = invgamma.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/kumaraswamy/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/kumaraswamy/docs/types/index.d.ts index a5af25d7bd1c..a56b28329ba0 100644 --- a/lib/node_modules/@stdlib/random/array/kumaraswamy/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/kumaraswamy/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = kumaraswamy( 2.0, 5.0, x ); + * var out = kumaraswamy.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/laplace/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/laplace/docs/types/index.d.ts index 156ca8440b69..fba0dbe449aa 100644 --- a/lib/node_modules/@stdlib/random/array/laplace/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/laplace/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = laplace( 2.0, 5.0, x ); + * var out = laplace.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/levy/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/levy/docs/types/index.d.ts index 661a3cbc6b84..08d3afc60727 100644 --- a/lib/node_modules/@stdlib/random/array/levy/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/levy/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = levy( 2.0, 5.0, x ); + * var out = levy.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/logistic/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/logistic/docs/types/index.d.ts index 1dfd6bbffbec..03f7287e9517 100644 --- a/lib/node_modules/@stdlib/random/array/logistic/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/logistic/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = logistic( 2.0, 5.0, x ); + * var out = logistic.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/lognormal/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/lognormal/docs/types/index.d.ts index af994440e694..eca742826029 100644 --- a/lib/node_modules/@stdlib/random/array/lognormal/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/lognormal/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = lognormal( 2.0, 5.0, x ); + * var out = lognormal.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/negative-binomial/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/negative-binomial/docs/types/index.d.ts index a4cb03621a14..2bd6e4eda831 100644 --- a/lib/node_modules/@stdlib/random/array/negative-binomial/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/negative-binomial/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = negativeBinomial( 10, 0.5, x ); + * var out = negativeBinomial.assign( 10, 0.5, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/normal/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/normal/docs/types/index.d.ts index 05d606457686..a0e2475e3c9e 100644 --- a/lib/node_modules/@stdlib/random/array/normal/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/normal/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = normal( 2.0, 5.0, x ); + * var out = normal.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/pareto-type1/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/pareto-type1/docs/types/index.d.ts index f871b991c89b..bec0889579d6 100644 --- a/lib/node_modules/@stdlib/random/array/pareto-type1/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/pareto-type1/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = pareto1( 2.0, 5.0, x ); + * var out = pareto1.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/poisson/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/poisson/docs/types/index.d.ts index dd58ee343c93..cda1822ea830 100644 --- a/lib/node_modules/@stdlib/random/array/poisson/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/poisson/docs/types/index.d.ts @@ -185,7 +185,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = poisson( 2.0, x ); + * var out = poisson.assign( 2.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/rayleigh/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/rayleigh/docs/types/index.d.ts index b0acda4f519b..debb72dd7935 100644 --- a/lib/node_modules/@stdlib/random/array/rayleigh/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/rayleigh/docs/types/index.d.ts @@ -185,7 +185,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = rayleigh( 2.0, x ); + * var out = rayleigh.assign( 2.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/scripts/scaffolds/binary/data/docs/types/index__d__ts.txt b/lib/node_modules/@stdlib/random/array/scripts/scaffolds/binary/data/docs/types/index__d__ts.txt index 144ceeae9cb2..25c15e196d56 100644 --- a/lib/node_modules/@stdlib/random/array/scripts/scaffolds/binary/data/docs/types/index__d__ts.txt +++ b/lib/node_modules/@stdlib/random/array/scripts/scaffolds/binary/data/docs/types/index__d__ts.txt @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, '{{DEFAULT_DTYPE}}' ); * // returns <{{DEFAULT_TYPED_ARRAY}}> * - * var out = {{ALIAS}}( {{PARAM_1_VALUE}}, {{PARAM_2_VALUE}}, out ); + * var out = {{ALIAS}}.assign( {{PARAM_1_VALUE}}, {{PARAM_2_VALUE}}, x ); * // returns <{{DEFAULT_TYPED_ARRAY}}> * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/scripts/scaffolds/ternary/data/docs/types/index__d__ts.txt b/lib/node_modules/@stdlib/random/array/scripts/scaffolds/ternary/data/docs/types/index__d__ts.txt index 5120eb0c75d9..ee03f094f000 100644 --- a/lib/node_modules/@stdlib/random/array/scripts/scaffolds/ternary/data/docs/types/index__d__ts.txt +++ b/lib/node_modules/@stdlib/random/array/scripts/scaffolds/ternary/data/docs/types/index__d__ts.txt @@ -193,7 +193,7 @@ interface Random extends PRNG { * var x = zeros( 10, '{{DEFAULT_DTYPE}}' ); * // returns <{{DEFAULT_TYPED_ARRAY}}> * - * var out = {{ALIAS}}( {{PARAM_1_VALUE}}, {{PARAM_2_VALUE}}, {{PARAM_3_VALUE}}, out ); + * var out = {{ALIAS}}.assign( {{PARAM_1_VALUE}}, {{PARAM_2_VALUE}}, {{PARAM_3_VALUE}}, x ); * // returns <{{DEFAULT_TYPED_ARRAY}}> * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/scripts/scaffolds/unary/data/docs/types/index__d__ts.txt b/lib/node_modules/@stdlib/random/array/scripts/scaffolds/unary/data/docs/types/index__d__ts.txt index df0c385e43a0..90a596bf7a87 100644 --- a/lib/node_modules/@stdlib/random/array/scripts/scaffolds/unary/data/docs/types/index__d__ts.txt +++ b/lib/node_modules/@stdlib/random/array/scripts/scaffolds/unary/data/docs/types/index__d__ts.txt @@ -185,7 +185,7 @@ interface Random extends PRNG { * var x = zeros( 10, '{{DEFAULT_DTYPE}}' ); * // returns <{{DEFAULT_TYPED_ARRAY}}> * - * var out = {{ALIAS}}( {{PARAM_1_VALUE}}, out ); + * var out = {{ALIAS}}.assign( {{PARAM_1_VALUE}}, x ); * // returns <{{DEFAULT_TYPED_ARRAY}}> * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/t/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/t/docs/types/index.d.ts index 031712a2577f..aa18b387c489 100644 --- a/lib/node_modules/@stdlib/random/array/t/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/t/docs/types/index.d.ts @@ -185,7 +185,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = t( 2.0, x ); + * var out = t.assign( 2.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/triangular/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/triangular/docs/types/index.d.ts index 72eac7f026cf..dc93a2af81b4 100644 --- a/lib/node_modules/@stdlib/random/array/triangular/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/triangular/docs/types/index.d.ts @@ -193,7 +193,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = triangular( 2.0, 5.0, 3.0, x ); + * var out = triangular.assign( 2.0, 5.0, 3.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/uniform/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/uniform/docs/types/index.d.ts index 8806355da67c..9985a553d1b1 100644 --- a/lib/node_modules/@stdlib/random/array/uniform/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/uniform/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = uniform( 2.0, 5.0, x ); + * var out = uniform.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x ); diff --git a/lib/node_modules/@stdlib/random/array/weibull/docs/types/index.d.ts b/lib/node_modules/@stdlib/random/array/weibull/docs/types/index.d.ts index b0b7cf7c14f5..e4ca782d19e6 100644 --- a/lib/node_modules/@stdlib/random/array/weibull/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/random/array/weibull/docs/types/index.d.ts @@ -189,7 +189,7 @@ interface Random extends PRNG { * var x = zeros( 10, 'float64' ); * // returns * - * var out = weibull( 2.0, 5.0, x ); + * var out = weibull.assign( 2.0, 5.0, x ); * // returns * * var bool = ( out === x );