summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXtreak <tir.karthi@gmail.com>2019-05-02 18:20:59 (GMT)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>2019-05-02 18:20:58 (GMT)
commit874ad1b3b4bfc782a5762c1f18234ba56b853caf (patch)
treec26a5e306ce2f1e2bb88825b4323a985898e018b
parent43fc3bb7cf0278735eb0010d7b3043775a120cb5 (diff)
downloadcpython-874ad1b3b4bfc782a5762c1f18234ba56b853caf.zip
cpython-874ad1b3b4bfc782a5762c1f18234ba56b853caf.tar.gz
cpython-874ad1b3b4bfc782a5762c1f18234ba56b853caf.tar.bz2
Fix typo: quaatile to quantile (GH=13001)
-rw-r--r--Lib/test/test_statistics.py2
1 files changed, 1 insertions, 1 deletions
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)