diff --git a/p2p/cuprate-p2p/src/client_pool/disconnect_monitor.rs b/p2p/cuprate-p2p/src/client_pool/disconnect_monitor.rs index 655873ea..782e88cf 100644 --- a/p2p/cuprate-p2p/src/client_pool/disconnect_monitor.rs +++ b/p2p/cuprate-p2p/src/client_pool/disconnect_monitor.rs @@ -24,7 +24,7 @@ pub async fn disconnect_monitor( mut new_connection_rx: mpsc::UnboundedReceiver<(ConnectionHandle, InternalPeerID)>, client_pool: Arc>, ) { - // We need to hold a weak reference otherwise the client pool and this would cause a circular reference + // We need to hold a weak reference otherwise the client pool and this would be a circular reference // which means the pool would be leaked. let weak_client_pool = Arc::downgrade(&client_pool); drop(client_pool);