From 93fe47f71f2613469089a1b365bbeec200f89736 Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 20 Dec 2023 14:07:02 +0100 Subject: [PATCH] docs: reconciler typo in doc comments for runtime controller Config impl (#1378) docs: reconciler typo in doc comments Signed-off-by: Nick Larsen --- kube-runtime/src/controller/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kube-runtime/src/controller/mod.rs b/kube-runtime/src/controller/mod.rs index cd85f241f..ef4c662a7 100644 --- a/kube-runtime/src/controller/mod.rs +++ b/kube-runtime/src/controller/mod.rs @@ -434,7 +434,7 @@ impl Config { /// The debounce duration used to deduplicate reconciliation requests. /// /// When set to a non-zero duration, debouncing is enabled in the [`scheduler`](crate::scheduler()) - /// resulting in __trailing edge debouncing__ of reqonciler requests. + /// resulting in __trailing edge debouncing__ of reconciler requests. /// This option can help to reduce the amount of unnecessary reconciler calls /// when using multiple controller relations, or during rapid phase transitions. ///