From 874ad1b3b4bfc782a5762c1f18234ba56b853caf Mon Sep 17 00:00:00 2001 From: Xtreak Date: Thu, 2 May 2019 23:50:59 +0530 Subject: Fix typo: quaatile to quantile (GH=13001) --- 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 903ee8f..1922de5 100644 --- a/Lib/test/test_statistics.py +++ b/Lib/test/test_statistics.py @@ -2192,7 +2192,7 @@ class TestQuantiles(unittest.TestCase): 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) -- cgit v0.12