1
0
mirror of https://github.com/rancher/rke.git synced 2025-04-28 03:31:24 +00:00

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.`
)
```
This commit is contained in:
shredgar 2020-11-11 10:29:40 +01:00 committed by GitHub
parent 3d9bf164c3
commit e049237ea9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.`
)