From 7142ba357da422b2aa6e6134fbdb8321f176ed1d Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Wed, 7 Feb 2024 11:36:13 -0800 Subject: [PATCH] math.statistics: fix help-lint --- basis/math/statistics/statistics-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/math/statistics/statistics-docs.factor b/basis/math/statistics/statistics-docs.factor index 09867dbb6b..25d07a7947 100644 --- a/basis/math/statistics/statistics-docs.factor +++ b/basis/math/statistics/statistics-docs.factor @@ -5,7 +5,7 @@ IN: math.statistics HELP: geometric-mean { $values { "seq" sequence } { "x" "a non-negative real number" } } { $description "Computes the geometric mean of all elements in " { $snippet "seq" } ". The geometric mean measures the central tendency of a data set and minimizes the effects of extreme values." } -{ $examples { $example "USING: math.statistics prettyprint ;" "{ 1 2 3 } geometric-mean ." "1.81712059283214" } } +{ $examples { $example "USING: math.statistics prettyprint ;" "{ 1 2 3 } geometric-mean ." "1.8171205928321397" } } { $errors "Throws a " { $link signal-error. } " (square-root of 0) if the sequence is empty." } ; HELP: harmonic-mean -- 2.34.1