From 859b720a400c59b8901d433bc1b5cf160088018d Mon Sep 17 00:00:00 2001 From: Karthikeyan Singaravelan Date: Mon, 29 Apr 2019 11:07:41 +0530 Subject: [PATCH] Fix typo: quaatile to quantile --- Lib/test/test_statistics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_statistics.py b/Lib/test/test_statistics.py index 0a967055f0fe6c5..dd79d7a867f8b24 100644 --- a/Lib/test/test_statistics.py +++ b/Lib/test/test_statistics.py @@ -2178,7 +2178,7 @@ def f(x): def test_specific_cases_inclusive(self): # Match results computed by hand and cross-checked # against the PERCENTILE.INC function in MS Excel - # and against the quaatile() function in SciPy. + # and against the quantile() function in SciPy. quantiles = statistics.quantiles data = [100, 200, 400, 800] random.shuffle(data)