Fix typo: quaatile to quantile (GH=13001)

This commit is contained in:
Xtreak 2019-05-02 23:50:59 +05:30 committed by Raymond Hettinger
parent 43fc3bb7cf
commit 874ad1b3b4
1 changed files with 1 additions and 1 deletions

View File

@ -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)