From 01178f76376cad4022c2c6dbd8c92a941dada253 Mon Sep 17 00:00:00 2001 From: Adrien Guillo Date: Mon, 26 Feb 2024 14:35:04 -0500 Subject: [PATCH] Fix typos --- chitchat/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chitchat/src/lib.rs b/chitchat/src/lib.rs index 8703029..a8a625b 100644 --- a/chitchat/src/lib.rs +++ b/chitchat/src/lib.rs @@ -107,11 +107,11 @@ impl Chitchat { self.cluster_state.apply_delta(delta); } - /// Executes the catchup callback if necessary. + /// Executes the catch-up callback if necessary. fn maybe_trigger_catchup_callback(&self, delta: &Delta) { if !delta.nodes_to_reset.is_empty() { if let Some(catchup_callback) = &self.config.catchup_callback { - info!("executing catchup callback"); + info!("executing catch-up callback"); catchup_callback(); } }