@@ -32,7 +32,7 @@ async def test_connection_pool_with_keepalive():
3232 async with httpcore .AsyncConnectionPool (
3333 network_backend = network_backend , max_keepalive_connections = 1
3434 ) as pool :
35- # Sending an intial request, which once complete will return to the pool, IDLE.
35+ # Sending an initial request, which once complete will return to the pool, IDLE.
3636 async with pool .stream ("GET" , "https://example.com/" ) as response :
3737 info = [repr (c ) for c in pool .connections ]
3838 assert info == [
@@ -126,7 +126,7 @@ async def test_connection_pool_with_close():
126126 )
127127
128128 async with httpcore .AsyncConnectionPool (network_backend = network_backend ) as pool :
129- # Sending an intial request, which once complete will not return to the pool.
129+ # Sending an initial request, which once complete will not return to the pool.
130130 async with pool .stream (
131131 "GET" , "https://example.com/" , headers = {"Connection" : "close" }
132132 ) as response :
@@ -183,7 +183,7 @@ async def test_connection_pool_with_http2():
183183 async with httpcore .AsyncConnectionPool (
184184 network_backend = network_backend ,
185185 ) as pool :
186- # Sending an intial request, which once complete will return to the pool, IDLE.
186+ # Sending an initial request, which once complete will return to the pool, IDLE.
187187 response = await pool .request ("GET" , "https://example.com/" )
188188 assert response .status == 200
189189 assert response .content == b"Hello, world!"
@@ -237,7 +237,7 @@ async def test_connection_pool_with_http2_goaway():
237237 async with httpcore .AsyncConnectionPool (
238238 network_backend = network_backend ,
239239 ) as pool :
240- # Sending an intial request, which once complete will return to the pool, IDLE.
240+ # Sending an initial request, which once complete will return to the pool, IDLE.
241241 response = await pool .request ("GET" , "https://example.com/" )
242242 assert response .status == 200
243243 assert response .content == b"Hello, world!"
@@ -471,7 +471,7 @@ async def test_connection_pool_with_immediate_expiry():
471471 keepalive_expiry = 0.0 ,
472472 network_backend = network_backend ,
473473 ) as pool :
474- # Sending an intial request, which once complete will not return to the pool.
474+ # Sending an initial request, which once complete will not return to the pool.
475475 async with pool .stream ("GET" , "https://example.com/" ) as response :
476476 info = [repr (c ) for c in pool .connections ]
477477 assert info == [
@@ -504,7 +504,7 @@ async def test_connection_pool_with_no_keepalive_connections_allowed():
504504 async with httpcore .AsyncConnectionPool (
505505 max_keepalive_connections = 0 , network_backend = network_backend
506506 ) as pool :
507- # Sending an intial request, which once complete will not return to the pool.
507+ # Sending an initial request, which once complete will not return to the pool.
508508 async with pool .stream ("GET" , "https://example.com/" ) as response :
509509 info = [repr (c ) for c in pool .connections ]
510510 assert info == [
0 commit comments