From c76de3e1f2de416694353aa158545689f72cedca Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Fri, 17 Feb 2023 11:17:04 -0800 Subject: Fix typos. --- dns/quic/_asyncio.py | 2 +- dns/quic/_sync.py | 2 +- 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: -- cgit v1.2.1