From 6883607ff808f53f02f4ed6c569049c8d239a71f Mon Sep 17 00:00:00 2001 From: Haley Weslin <15714156-hweslin@users.noreply.gitlab.com> Date: Fri, 29 Sep 2023 00:59:36 +0000 Subject: [PATCH] Fix "have been the once" in bucket_entry.rs This fixes a wordo (once for one) in bucket_entry.rs. --- veilid-core/src/routing_table/bucket_entry.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/veilid-core/src/routing_table/bucket_entry.rs b/veilid-core/src/routing_table/bucket_entry.rs index 2d768fec..2630b034 100644 --- a/veilid-core/src/routing_table/bucket_entry.rs +++ b/veilid-core/src/routing_table/bucket_entry.rs @@ -298,7 +298,7 @@ impl BucketEntryInner { // If we're updating an entry's node info, purge all // but the last connection in our last connections list // because the dial info could have changed and it's safer to just reconnect. - // The latest connection would have been the once we got the new node info + // The latest connection would have been the one we got the new node info // over so that connection is still valid. if node_info_changed { self.clear_last_connections_except_latest();