From 1dd194f95b64cda4727b9548bcd2471b4372c7c8 Mon Sep 17 00:00:00 2001 From: argusdusty Date: Tue, 11 Jun 2024 04:00:13 -0700 Subject: [PATCH] stat/distuv: correct Gamma Mode doc comment --- stat/distuv/gamma.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stat/distuv/gamma.go b/stat/distuv/gamma.go index 2337c0bb..556d1b53 100644 --- a/stat/distuv/gamma.go +++ b/stat/distuv/gamma.go @@ -64,7 +64,7 @@ func (g Gamma) Mean() float64 { return g.Alpha / g.Beta } -// Mode returns the mode of the normal distribution. +// Mode returns the mode of the gamma distribution. // // The mode is 0 in the special case where the Alpha (shape) parameter // is less than 1.