From e049237ea988d23cb417d060a0b78968c3d48edf Mon Sep 17 00:00:00 2001 From: shredgar Date: Wed, 11 Nov 2020 10:29:40 +0100 Subject: [PATCH] Fix typo in config.go Fixed a small typo in `config.go` at: ``` const ( comments = `# If you intened to deploy Kubernetes in an air-gapped environment, # please consult the documentation on how to configure custom RKE images.` ) ``` to: ``` const ( comments = `# If you intended to deploy Kubernetes in an air-gapped environment, # please consult the documentation on how to configure custom RKE images.` ) ``` --- cmd/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/config.go b/cmd/config.go index 7a64532c..c72bd102 100644 --- a/cmd/config.go +++ b/cmd/config.go @@ -22,7 +22,7 @@ import ( ) const ( - comments = `# If you intened to deploy Kubernetes in an air-gapped environment, + comments = `# If you intended to deploy Kubernetes in an air-gapped environment, # please consult the documentation on how to configure custom RKE images.` )