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

Fix typo #72

Merged
merged 1 commit into from
Sep 18, 2018
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 pkg/connection/connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func logGRPC(ctx context.Context, method string, req, reply interface{}, cc *grp
}

// isFinished returns true if given error represents final error of an
// operation. That means the operation has failed completelly and cannot be in
// operation. That means the operation has failed completely and cannot be in
// progress. It returns false, if the error represents some transient error
// like timeout and the operation itself or previous call to the same
// operation can be actually in progress.
Expand Down
2 changes: 1 addition & 1 deletion pkg/controller/framework_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func runTests(t *testing.T, handlerFactory handlerFactory, tests []testCase) {
vaInformer := informers.Storage().V1beta1().VolumeAttachments()
pvInformer := informers.Core().V1().PersistentVolumes()
nodeInformer := informers.Core().V1().Nodes()
// Fill the informers with inital objects so controller can Get() them
// Fill the informers with initial objects so controller can Get() them
for _, obj := range objs {
switch obj.(type) {
case *v1.PersistentVolume:
Expand Down