From 8ee15784af75aa65d47952c0367c0bf12a08b990 Mon Sep 17 00:00:00 2001 From: wavebyrd Date: Mon, 16 Mar 2026 10:42:57 -0400 Subject: [PATCH] Fix typo: seperately -> separately Fixes #1064 Co-Authored-By: Claude Opus 4.5 --- httpcore/_async/connection_pool.py | 2 +- httpcore/_sync/connection_pool.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/httpcore/_async/connection_pool.py b/httpcore/_async/connection_pool.py index 5ef74e64..1139f006 100644 --- a/httpcore/_async/connection_pool.py +++ b/httpcore/_async/connection_pool.py @@ -275,7 +275,7 @@ def _assign_requests_to_connections(self) -> list[AsyncConnectionInterface]: Called whenever a new request is added or removed from the pool. Any closing connections are returned, allowing the I/O for closing - those connections to be handled seperately. + those connections to be handled separately. """ closing_connections = [] diff --git a/httpcore/_sync/connection_pool.py b/httpcore/_sync/connection_pool.py index 4b26f9c6..1b0fd697 100644 --- a/httpcore/_sync/connection_pool.py +++ b/httpcore/_sync/connection_pool.py @@ -275,7 +275,7 @@ def _assign_requests_to_connections(self) -> list[ConnectionInterface]: Called whenever a new request is added or removed from the pool. Any closing connections are returned, allowing the I/O for closing - those connections to be handled seperately. + those connections to be handled separately. """ closing_connections = []