From 99b73820cf3dad0a25c8028609bd66971565b24c Mon Sep 17 00:00:00 2001 From: Akshat Sinha Date: Mon, 13 Oct 2025 19:42:46 +0530 Subject: [PATCH] fix: correct typo initalization to initialization Signed-off-by: Akshat Sinha --- cmd/flux/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/flux/main.go b/cmd/flux/main.go index b6627caa..6412da45 100644 --- a/cmd/flux/main.go +++ b/cmd/flux/main.go @@ -180,7 +180,7 @@ func main() { // This is required because controller-runtime expects its consumers to // set a logger through log.SetLogger within 30 seconds of the program's - // initalization. If not set, the entire debug stack is printed as an + // initialization. If not set, the entire debug stack is printed as an // error, see: https://github.com/kubernetes-sigs/controller-runtime/blob/ed8be90/pkg/log/log.go#L59 // Since we have our own logging and don't care about controller-runtime's // logger, we configure it's logger to do nothing.