Skip to content

Commit ed4babc

Browse files
committed
wip
1 parent e578d0d commit ed4babc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tls/src/server.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,10 +255,10 @@ impl Server {
255255
) -> impl Future<
256256
Output = Result<(Stream<TcpStream>, core::net::SocketAddr), Error>,
257257
> {
258-
// This is where the actual socket accept occurs.
258+
// This is where the TCP socket accept occurs.
259259
//
260260
// Everything else takes a while and therefore we return a future that
261-
// can be awaited inside a spawned taks.
261+
// can be awaited inside a spawned task.
262262
let accept_res = self.tcp_listener.accept().await;
263263

264264
// Clone all our fields so that we don't hold a reference to `self`

0 commit comments

Comments
 (0)