From 0719483a6cc14377c72e46e117640a58d4deb371 Mon Sep 17 00:00:00 2001 From: Carlos Eduardo Arango Gutierrez Date: Thu, 24 Mar 2022 07:25:33 -0400 Subject: [PATCH] Fix typo at pkg/windows/service/service.go:94 ./windows/service/service.go:94: atleast ==> at least Signed-off-by: Carlos Eduardo Arango Gutierrez --- pkg/windows/service/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/windows/service/service.go b/pkg/windows/service/service.go index b4ebaf2f72c..c33b5522c25 100644 --- a/pkg/windows/service/service.go +++ b/pkg/windows/service/service.go @@ -91,7 +91,7 @@ Loop: // As per https://docs.microsoft.com/en-us/windows/desktop/services/service-control-handler-function s <- svc.Status{State: svc.StopPending} - // If we cannot exit gracefully, we really only can exit our process, so atleast the + // If we cannot exit gracefully, we really only can exit our process, so at least the // service manager will think that we gracefully exited. At the time of writing this comment this is // needed for applications that do not use signals (e.g. kube-proxy) if !graceful {