From c76de3e1f2de416694353aa158545689f72cedca Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Fri, 17 Feb 2023 11:17:04 -0800 Subject: [PATCH] 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 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: -- 2.47.3