From 3b562a8507f2b1c75b3e9358bcaead2358c17464 Mon Sep 17 00:00:00 2001 From: ayushbisht2001 <61404154+ayushbisht2001@users.noreply.github.com> Date: Sun, 28 Feb 2021 23:33:26 +0530 Subject: [PATCH] arithmetic_mean --- maths/series/arithmetic_mean.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maths/series/arithmetic_mean.py b/maths/series/arithmetic_mean.py index 9d341feac..994f479d1 100644 --- a/maths/series/arithmetic_mean.py +++ b/maths/series/arithmetic_mean.py @@ -21,7 +21,7 @@ def is_arithmetic_series(series: list) -> bool: def arithmetic_mean(series: list) -> float: """ - return the geometric mean of series + return the arithmetic mean of series >>> arithmetic_mean([2, 4, 6]) 4.0