From a5020857f31ad6d03bc7c0019551cc28b9e5aad5 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 1 Oct 2021 00:03:23 +0200 Subject: Fix typos discovered by codespell --- mesonbuild/mesonlib/universal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/mesonlib/universal.py') diff --git a/mesonbuild/mesonlib/universal.py b/mesonbuild/mesonlib/universal.py index ebf9cb0..e142528 100644 --- a/mesonbuild/mesonlib/universal.py +++ b/mesonbuild/mesonlib/universal.py @@ -1731,7 +1731,7 @@ class OrderedSet(T.MutableSet[_T]): return 'OrderedSet()' def __reversed__(self) -> T.Iterator[_T]: - # Mypy is complaining that sets cant be reversed, which is true for + # Mypy is complaining that sets can't be reversed, which is true for # unordered sets, but this is an ordered, set so reverse() makes sense. return reversed(self.__container.keys()) # type: ignore -- cgit v1.1