From 15f44ab043b37c064d6891c7864205fed9fb0dd1 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Tue, 30 Aug 2016 10:47:49 -0700 Subject: =?UTF-8?q?Issue=20#27895:=20=20Spelling=20fixes=20(Contributed=20?= =?UTF-8?q?by=20Ville=20Skytt=C3=A4).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Lib/statistics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/statistics.py') diff --git a/Lib/statistics.py b/Lib/statistics.py index 40c72db0c0..7d53e0c0e2 100644 --- a/Lib/statistics.py +++ b/Lib/statistics.py @@ -454,7 +454,7 @@ class _nroot_NS: """Return the nth root of a positive huge number.""" assert x > 0 # I state without proof that ⁿ√x ≈ ⁿ√2·ⁿ√(x//2) - # and that for sufficiently big x the error is acceptible. + # and that for sufficiently big x the error is acceptable. # We now halve x until it is small enough to get the root. m = 0 while True: -- cgit v1.2.1