]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Fix typos.
authorBrian Wellington <bwelling@xbill.org>
Fri, 17 Feb 2023 19:17:04 +0000 (11:17 -0800)
committerBrian Wellington <bwelling@xbill.org>
Fri, 17 Feb 2023 19:17:04 +0000 (11:17 -0800)
dns/quic/_asyncio.py
dns/quic/_sync.py
dns/quic/_trio.py

index 0a2e220d31b7588bab8f583d8ea875103dbe36c5..bcce048114756bb03e2c6951ff890157d7cb2aea 100644 (file)
@@ -198,7 +198,7 @@ class AsyncioQuicManager(AsyncQuicManager):
         return self
 
     async def __aexit__(self, exc_type, exc_val, exc_tb):
-        # Copy the itertor into a list as exiting things will mutate the connections
+        # Copy the iterator into a list as exiting things will mutate the connections
         # table.
         connections = list(self._connections.values())
         for connection in connections:
index be005ba99d0067cdd1d7d43212f2ea0b050c44f7..8cc606a9fa4795701cec55a749515c095d925f9e 100644 (file)
@@ -206,7 +206,7 @@ class SyncQuicManager(BaseQuicManager):
         return self
 
     def __exit__(self, exc_type, exc_val, exc_tb):
-        # Copy the itertor into a list as exiting things will mutate the connections
+        # Copy the iterator into a list as exiting things will mutate the connections
         # table.
         connections = list(self._connections.values())
         for connection in connections:
index 1e47a5a6ce47dbaa94a8254c9d32f47795d9924f..543e3cb5325fa0ffdfa420b4b074d7115abb2af9 100644 (file)
@@ -162,7 +162,7 @@ class TrioQuicManager(AsyncQuicManager):
         return self
 
     async def __aexit__(self, exc_type, exc_val, exc_tb):
-        # Copy the itertor into a list as exiting things will mutate the connections
+        # Copy the iterator into a list as exiting things will mutate the connections
         # table.
         connections = list(self._connections.values())
         for connection in connections: