diff options
author | Brian Wellington <bwelling@xbill.org> | 2023-02-17 11:17:04 -0800 |
---|---|---|
committer | Brian Wellington <bwelling@xbill.org> | 2023-02-17 11:17:04 -0800 |
commit | c76de3e1f2de416694353aa158545689f72cedca (patch) | |
tree | 3dfc106fd838fcd11ef7bcd895535c9a9f3e73aa | |
parent | 9d29457ac5e8d5ab932c62c39665ac1b057040d3 (diff) | |
download | dnspython-c76de3e1f2de416694353aa158545689f72cedca.tar.gz |
Fix typos.
-rw-r--r-- | dns/quic/_asyncio.py | 2 | ||||
-rw-r--r-- | dns/quic/_sync.py | 2 | ||||
-rw-r--r-- | dns/quic/_trio.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/dns/quic/_asyncio.py b/dns/quic/_asyncio.py index 0a2e220..bcce048 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 be005ba..8cc606a 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 1e47a5a..543e3cb 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: |