From a4879503fc951a001f8f903146ba24cdf1a24f5f Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Wed, 18 Jun 2025 02:33:16 +0000 Subject: [PATCH 1/3] docs: update related packages sections --- .../@stdlib/stats/base/dists/gumbel/logpdf/README.md | 2 +- .../@stdlib/stats/base/dists/pareto-type1/logpdf/README.md | 1 - lib/node_modules/@stdlib/stats/strided/dvarm/README.md | 2 -- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/gumbel/logpdf/README.md b/lib/node_modules/@stdlib/stats/base/dists/gumbel/logpdf/README.md index 61dca8e2ed69..df61cc758d21 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/gumbel/logpdf/README.md +++ b/lib/node_modules/@stdlib/stats/base/dists/gumbel/logpdf/README.md @@ -160,7 +160,7 @@ for ( i = 0; i < 10; i++ ) { #### stdlib_base_dists_gumbel_logcdf( x, mu, beta ) -Evaluates the logarithm of the [probability density function][pdf] (PDF) for a [Gumbel][gumbel-distribution] distribution with parameters `mu` (location parameter) and `beta > 0` (scale parameter).``` +Evaluates the logarithm of the [probability density function][pdf] (PDF) for a [Gumbel][gumbel-distribution] distribution with parameters `mu` (location parameter) and `beta > 0` (scale parameter).\`\`\` ```c double out = stdlib_base_dists_gumbel_logpdf( 0.0, 0.0, 2.0 ); diff --git a/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logpdf/README.md b/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logpdf/README.md index 0b7c5052385b..aea5f541af13 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logpdf/README.md +++ b/lib/node_modules/@stdlib/stats/base/dists/pareto-type1/logpdf/README.md @@ -264,7 +264,6 @@ int main( void ) { - From f92e973293fc3d3539e89c81866d1ebb9cdceb24 Mon Sep 17 00:00:00 2001 From: Athan Date: Tue, 17 Jun 2025 22:56:58 -0700 Subject: [PATCH 2/3] Discard changes to lib/node_modules/@stdlib/stats/strided/dvarm/README.md --- lib/node_modules/@stdlib/stats/strided/dvarm/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/node_modules/@stdlib/stats/strided/dvarm/README.md b/lib/node_modules/@stdlib/stats/strided/dvarm/README.md index 78abc3bc98f4..dc0f41ba0884 100644 --- a/lib/node_modules/@stdlib/stats/strided/dvarm/README.md +++ b/lib/node_modules/@stdlib/stats/strided/dvarm/README.md @@ -363,6 +363,8 @@ int main( void ) { +[@stdlib/stats/strided/dvariance]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/strided/dvariance + From cbc9255926e7f9c7f2827a31e2ed5af5476d01b7 Mon Sep 17 00:00:00 2001 From: Athan Date: Tue, 17 Jun 2025 22:57:14 -0700 Subject: [PATCH 3/3] docs: remove backticks Signed-off-by: Athan --- .../@stdlib/stats/base/dists/gumbel/logpdf/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/gumbel/logpdf/README.md b/lib/node_modules/@stdlib/stats/base/dists/gumbel/logpdf/README.md index df61cc758d21..88c7b23a6b18 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/gumbel/logpdf/README.md +++ b/lib/node_modules/@stdlib/stats/base/dists/gumbel/logpdf/README.md @@ -160,7 +160,7 @@ for ( i = 0; i < 10; i++ ) { #### stdlib_base_dists_gumbel_logcdf( x, mu, beta ) -Evaluates the logarithm of the [probability density function][pdf] (PDF) for a [Gumbel][gumbel-distribution] distribution with parameters `mu` (location parameter) and `beta > 0` (scale parameter).\`\`\` +Evaluates the logarithm of the [probability density function][pdf] (PDF) for a [Gumbel][gumbel-distribution] distribution with parameters `mu` (location parameter) and `beta > 0` (scale parameter). ```c double out = stdlib_base_dists_gumbel_logpdf( 0.0, 0.0, 2.0 );