From 3afd96050e8b067a9b11475b2a2ec90904f56cce Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 13 Jul 2026 12:24:41 +0000 Subject: [PATCH 1/3] docs: normalize `stats/base/dists/gumbel/mgf` `@module` description Rewords the `lib/index.js` module description from the imperative form "Evaluate the moment-generating function (MGF) for a Gumbel distribution." to the noun-phrase form "Gumbel distribution moment-generating function (MGF).", matching the 14/15 (93%) sibling convention in the `stats/base/dists/gumbel` namespace. `mgf` was the sole deviator. --- .../@stdlib/stats/base/dists/gumbel/mgf/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/gumbel/mgf/lib/index.js b/lib/node_modules/@stdlib/stats/base/dists/gumbel/mgf/lib/index.js index 894d2d8a22d8..2c6ee8ad2dd9 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/gumbel/mgf/lib/index.js +++ b/lib/node_modules/@stdlib/stats/base/dists/gumbel/mgf/lib/index.js @@ -19,7 +19,7 @@ 'use strict'; /** -* Evaluate the moment-generating function (MGF) for a Gumbel distribution. +* Gumbel distribution moment-generating function (MGF). * * @module @stdlib/stats/base/dists/gumbel/mgf * From 727a00b75471fca178867e85e292d6f70b9c7a58 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 13 Jul 2026 12:24:47 +0000 Subject: [PATCH 2/3] docs: append `(CDF)` acronym to `stats/base/dists/gumbel/logcdf` description Appends the `(CDF)` acronym to the `package.json` description so it reads "Gumbel distribution logarithm of cumulative distribution function (CDF).", matching the sibling convention. Every other `stats/base/dists/gumbel` package whose name references a common-acronym function (`cdf`, `logpdf`, `mgf`, `pdf`) already includes the parenthesized acronym in its `package.json` description; `logcdf` was the sole deviator. --- .../@stdlib/stats/base/dists/gumbel/logcdf/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/gumbel/logcdf/package.json b/lib/node_modules/@stdlib/stats/base/dists/gumbel/logcdf/package.json index ea73064bccc5..90cd93b79cc4 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/gumbel/logcdf/package.json +++ b/lib/node_modules/@stdlib/stats/base/dists/gumbel/logcdf/package.json @@ -1,7 +1,7 @@ { "name": "@stdlib/stats/base/dists/gumbel/logcdf", "version": "0.0.0", - "description": "Gumbel distribution logarithm of cumulative distribution function.", + "description": "Gumbel distribution logarithm of cumulative distribution function (CDF).", "license": "Apache-2.0", "author": { "name": "The Stdlib Authors", From 680986738153843d8c63bbd365cda11454448de5 Mon Sep 17 00:00:00 2001 From: Athan Date: Mon, 13 Jul 2026 15:22:15 -0700 Subject: [PATCH 3/3] Apply suggestions from code review Co-authored-by: Athan Signed-off-by: Athan --- .../@stdlib/stats/base/dists/gumbel/mgf/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/base/dists/gumbel/mgf/lib/index.js b/lib/node_modules/@stdlib/stats/base/dists/gumbel/mgf/lib/index.js index 2c6ee8ad2dd9..894d2d8a22d8 100644 --- a/lib/node_modules/@stdlib/stats/base/dists/gumbel/mgf/lib/index.js +++ b/lib/node_modules/@stdlib/stats/base/dists/gumbel/mgf/lib/index.js @@ -19,7 +19,7 @@ 'use strict'; /** -* Gumbel distribution moment-generating function (MGF). +* Evaluate the moment-generating function (MGF) for a Gumbel distribution. * * @module @stdlib/stats/base/dists/gumbel/mgf *