From 531cb71d004b237a9e9dd0b68bb63d3341c5a856 Mon Sep 17 00:00:00 2001 From: Haley Weslin <15714156-hweslin@users.noreply.gitlab.com> Date: Mon, 25 Sep 2023 18:59:30 +0000 Subject: [PATCH] Fix "searing" in fanout_call.rs comment This fixes a wordo of searing for searching. --- veilid-core/src/rpc_processor/fanout_call.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/veilid-core/src/rpc_processor/fanout_call.rs b/veilid-core/src/rpc_processor/fanout_call.rs index 5a7971a5..8cb4c8b6 100644 --- a/veilid-core/src/rpc_processor/fanout_call.rs +++ b/veilid-core/src/rpc_processor/fanout_call.rs @@ -19,7 +19,7 @@ pub fn capability_fanout_node_info_filter(caps: Vec) -> FanoutNodeIn Arc::new(move |_, ni| ni.has_capabilities(&caps)) } -/// Contains the logic for generically searing the Veilid routing table for a set of nodes and applying an +/// Contains the logic for generically searching the Veilid routing table for a set of nodes and applying an /// RPC operation that eventually converges on satisfactory result, or times out and returns some /// unsatisfactory but acceptable result. Or something. ///