From 28c656a94eb9a78582c9e35a7ef239a775733c85 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Sat, 18 Mar 2023 02:46:17 +0800 Subject: [PATCH] Correct a typo in resolver.go --- pkg/commands/resolver.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/commands/resolver.go b/pkg/commands/resolver.go index ddf6e5bc01..ba68489ceb 100644 --- a/pkg/commands/resolver.go +++ b/pkg/commands/resolver.go @@ -394,7 +394,7 @@ func ResolveFilesToWriter( futures = futures[1:] if ok { // Write the next body and a trailing delimiter. - // We write the delimeter LAST so that when streamed to + // We write the delimiter LAST so that when streamed to // kubectl it knows that the resource is complete and may // be applied. out.Write(append(b, []byte("\n---\n")...))