]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in test_array.py (GH-23189)
authorIkko Ashimine <eltociear@gmail.com>
Tue, 10 Nov 2020 12:42:36 +0000 (21:42 +0900)
committerGitHub <noreply@github.com>
Tue, 10 Nov 2020 12:42:36 +0000 (18:12 +0530)
Lib/test/test_array.py

index c423f545488f825ac2484684cea23aa06e0b0b5f..77a0c64a88e6c054b13121526a7b1938dca64395 100644 (file)
@@ -393,7 +393,7 @@ class BaseTest:
         a.insert(0, self.outside)
         self.assertEqual(list(exhit), [])
         # The iterator index points past the 0th position so inserting
-        # an element in the beggining does not make it appear.
+        # an element in the beginning does not make it appear.
         self.assertEqual(list(empit), [])
         self.assertEqual(list(a), [self.outside] + list(self.example))