]> granicus.if.org Git - python/commitdiff
Fix typo: quaatile to quantile (GH=13001)
authorXtreak <tir.karthi@gmail.com>
Thu, 2 May 2019 18:20:59 +0000 (23:50 +0530)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>
Thu, 2 May 2019 18:20:58 +0000 (14:20 -0400)
Lib/test/test_statistics.py

index 903ee8f343cb1c8d9a727b97c3f1831b9969ccbe..1922de5df4b0c5ebb0e85f58022bf13d61232c7a 100644 (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)