From: Brian Wellington Date: Fri, 17 Feb 2023 19:17:04 +0000 (-0800) Subject: Fix typos. X-Git-Tag: v2.4.0rc1~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c76de3e1f2de416694353aa158545689f72cedca;p=thirdparty%2Fdnspython.git Fix typos. --- diff --git a/dns/quic/_asyncio.py b/dns/quic/_asyncio.py index 0a2e220d..bcce0481 100644 --- a/dns/quic/_asyncio.py +++ b/dns/quic/_asyncio.py @@ -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: diff --git a/dns/quic/_sync.py b/dns/quic/_sync.py index be005ba9..8cc606a9 100644 --- a/dns/quic/_sync.py +++ b/dns/quic/_sync.py @@ -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: diff --git a/dns/quic/_trio.py b/dns/quic/_trio.py index 1e47a5a6..543e3cb5 100644 --- a/dns/quic/_trio.py +++ b/dns/quic/_trio.py @@ -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: