From 427beff44704d025d4a3e99030232639148d0643 Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Sat, 18 Mar 2023 20:37:44 +0800 Subject: [PATCH] Correct a typo in resolver.go (#989) --- 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")...))