Skip to content

Commit b0d63c6

Browse files
authored
fix typo in tdigest_test.py
1 parent 9004004 commit b0d63c6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/tdigest_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def test_tdigest_double_example(self):
5959
self.assertEqual(len(cdf), 2)
6060
self.assertAlmostEqual(cdf[0], 0.5, delta = 0.05)
6161

62-
# we can define a new tdiget with a different distribution, then merge them
62+
# we can define a new tdigest with a different distribution, then merge them
6363
td2 = tdigest_double()
6464
td2.update(np.random.normal(loc=2.0, size=n))
6565
td.merge(td2)

0 commit comments

Comments
 (0)