bpo-39002: Fix simple typo: tranlation -> translation (GH-17517)


diff --git a/Lib/test/test_statistics.py b/Lib/test/test_statistics.py
index bebd9b5..a9a427b 100644
--- a/Lib/test/test_statistics.py
+++ b/Lib/test/test_statistics.py
@@ -2192,7 +2192,7 @@
                 quantiles(padded_data, n=n, method='inclusive'),
                 (n, data),
             )
-            # Invariant under tranlation and scaling
+            # Invariant under translation and scaling
             def f(x):
                 return 3.5 * x - 1234.675
             exp = list(map(f, expected))
@@ -2232,7 +2232,7 @@
                 result = quantiles(map(datatype, data), n=n, method="inclusive")
                 self.assertTrue(all(type(x) == datatype) for x in result)
                 self.assertEqual(result, list(map(datatype, expected)))
-            # Invariant under tranlation and scaling
+            # Invariant under translation and scaling
             def f(x):
                 return 3.5 * x - 1234.675
             exp = list(map(f, expected))
diff --git a/Misc/ACKS b/Misc/ACKS
index 2286f7b..253e2f6 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1900,3 +1900,4 @@
 Tim Hopper
 Dan Lidral-Porter
 Ngalim Siregar
+Tim Gates
diff --git a/Misc/NEWS.d/next/Documentation/2019-12-09-10-12-00.bpo-39002.AfgvfO.rst b/Misc/NEWS.d/next/Documentation/2019-12-09-10-12-00.bpo-39002.AfgvfO.rst
new file mode 100644
index 0000000..a6dfa22
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2019-12-09-10-12-00.bpo-39002.AfgvfO.rst
@@ -0,0 +1 @@
+Fix simple typo in Lib/test/test_statistics.py.