Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct typos #11190

Merged
merged 1 commit into from
Apr 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/cluster_spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -1270,5 +1270,5 @@ spec:
- native.cgroupdriver=cgroupfs
```

In the case of containerd, the cgroup-driver is dependant on the cgroup driver of kubelet. To use cgroupfs, just update the
In the case of containerd, the cgroup-driver is dependent on the cgroup driver of kubelet. To use cgroupfs, just update the
cgroupDriver of kubelet to use cgroupfs.
2 changes: 1 addition & 1 deletion tests/e2e/kubetest2-kops/deployer/up_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func TestAppendIfUnset(t *testing.T) {
t.Run(tc.name, func(t *testing.T) {
actual := appendIfUnset(tc.args, tc.arg, tc.val)
if !reflect.DeepEqual(actual, tc.expected) {
t.Errorf("arguments didnt match: %v vs %v", actual, tc.expected)
t.Errorf("arguments didn't match: %v vs %v", actual, tc.expected)
}
})
}
Expand Down