Skip to content

Commit

Permalink
Merge pull request #6125 from killianmuldoon/typos
Browse files Browse the repository at this point in the history
🌱 Fix typo in word enqueue
  • Loading branch information
k8s-ci-robot authored Feb 14, 2022
2 parents 078c649 + 0b18fe7 commit cc18d29
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,7 @@ func (r *KubeadmConfigReconciler) resolveSecretFileContent(ctx context.Context,
return data, nil
}

// ClusterToKubeadmConfigs is a handler.ToRequestsFunc to be used to enqeue
// ClusterToKubeadmConfigs is a handler.ToRequestsFunc to be used to enqueue
// requests for reconciliation of KubeadmConfigs.
func (r *KubeadmConfigReconciler) ClusterToKubeadmConfigs(o client.Object) []ctrl.Request {
result := []ctrl.Request{}
Expand Down Expand Up @@ -761,7 +761,7 @@ func (r *KubeadmConfigReconciler) ClusterToKubeadmConfigs(o client.Object) []ctr
return result
}

// MachineToBootstrapMapFunc is a handler.ToRequestsFunc to be used to enqeue
// MachineToBootstrapMapFunc is a handler.ToRequestsFunc to be used to enqueue
// request for reconciliation of KubeadmConfig.
func (r *KubeadmConfigReconciler) MachineToBootstrapMapFunc(o client.Object) []ctrl.Request {
m, ok := o.(*clusterv1.Machine)
Expand Down
2 changes: 1 addition & 1 deletion internal/controllers/machineset/machineset_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ func (r *Reconciler) waitForMachineDeletion(ctx context.Context, machineList []*
return nil
}

// MachineToMachineSets is a handler.ToRequestsFunc to be used to enqeue requests for reconciliation
// MachineToMachineSets is a handler.ToRequestsFunc to be used to enqueue requests for reconciliation
// for MachineSets that might adopt an orphaned Machine.
func (r *Reconciler) MachineToMachineSets(o client.Object) []ctrl.Request {
ctx := context.Background()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ func (r *DockerMachineReconciler) SetupWithManager(ctx context.Context, mgr ctrl
)
}

// DockerClusterToDockerMachines is a handler.ToRequestsFunc to be used to enqeue
// DockerClusterToDockerMachines is a handler.ToRequestsFunc to be used to enqueue
// requests for reconciliation of DockerMachines.
func (r *DockerMachineReconciler) DockerClusterToDockerMachines(o client.Object) []ctrl.Request {
result := []ctrl.Request{}
Expand Down

0 comments on commit cc18d29

Please sign in to comment.