[Python-checkins] Fix typo: quaatile to quantile (GH=13001)

Raymond Hettinger webhook-mailer at python.org
Thu May 2 14:21:12 EDT 2019


https://github.com/python/cpython/commit/874ad1b3b4bfc782a5762c1f18234ba56b853caf
commit: 874ad1b3b4bfc782a5762c1f18234ba56b853caf
branch: master
author: Xtreak <tir.karthi at gmail.com>
committer: Raymond Hettinger <rhettinger at users.noreply.github.com>
date: 2019-05-02T14:20:58-04:00
summary:

Fix typo: quaatile to quantile (GH=13001)

files:
M Lib/test/test_statistics.py

diff --git a/Lib/test/test_statistics.py b/Lib/test/test_statistics.py
index 903ee8f343cb..1922de5df4b0 100644
--- a/Lib/test/test_statistics.py
+++ b/Lib/test/test_statistics.py
@@ -2192,7 +2192,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)



More information about the Python-checkins mailing list