summaryrefslogtreecommitdiff
path: root/pkg/machine/wsl/machine.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-05-25 10:32:48 -0400
committerGitHub <noreply@github.com>2022-05-25 10:32:48 -0400
commitaf01cd06dd2b8da743c5a52cb43b53fcfaef648f (patch)
treeb98edfb7e899911c159263164b31bd5f91ece299 /pkg/machine/wsl/machine.go
parent800a367d737828193de5e41f8ad5587e2dde1f59 (diff)
parent429b1f7685129974399c599964689e1050a52141 (diff)
downloadpodman-af01cd06dd2b8da743c5a52cb43b53fcfaef648f.tar.gz
podman-af01cd06dd2b8da743c5a52cb43b53fcfaef648f.tar.bz2
podman-af01cd06dd2b8da743c5a52cb43b53fcfaef648f.zip
Merge pull request #14357 from rhatdan/codespell
Fix codespell errors
Diffstat (limited to 'pkg/machine/wsl/machine.go')
-rw-r--r--pkg/machine/wsl/machine.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/machine/wsl/machine.go b/pkg/machine/wsl/machine.go
index 0b2874baf..06020aded 100644
--- a/pkg/machine/wsl/machine.go
+++ b/pkg/machine/wsl/machine.go
@@ -831,16 +831,16 @@ func (v *MachineVM) Set(_ string, opts machine.SetOptions) ([]error, error) {
}
if opts.CPUs != nil {
- setErrors = append(setErrors, errors.Errorf("changing CPUs not suppored for WSL machines"))
+ setErrors = append(setErrors, errors.Errorf("changing CPUs not supported for WSL machines"))
}
if opts.Memory != nil {
- setErrors = append(setErrors, errors.Errorf("changing memory not suppored for WSL machines"))
+ setErrors = append(setErrors, errors.Errorf("changing memory not supported for WSL machines"))
}
if opts.DiskSize != nil {
- setErrors = append(setErrors, errors.Errorf("changing Disk Size not suppored for WSL machines"))
+ setErrors = append(setErrors, errors.Errorf("changing Disk Size not supported for WSL machines"))
}
return setErrors, v.writeConfig()
@@ -1477,7 +1477,7 @@ func (v *MachineVM) getResources() (resources machine.ResourceConfig) {
return
}
-// RemoveAndCleanMachines removes all machine and cleans up any other files associatied with podman machine
+// RemoveAndCleanMachines removes all machine and cleans up any other files associated with podman machine
func (p *Provider) RemoveAndCleanMachines() error {
var (
vm machine.VM