Skip to content

Commit 0b18fe7

Browse files
Fix type in word enqueue
Signed-off-by: killianmuldoon <kmuldoon@vmware.com>
1 parent cca725c commit 0b18fe7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

bootstrap/kubeadm/internal/controllers/kubeadmconfig_controller.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ func (r *KubeadmConfigReconciler) resolveSecretFileContent(ctx context.Context,
713713
return data, nil
714714
}
715715

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

764-
// MachineToBootstrapMapFunc is a handler.ToRequestsFunc to be used to enqeue
764+
// MachineToBootstrapMapFunc is a handler.ToRequestsFunc to be used to enqueue
765765
// request for reconciliation of KubeadmConfig.
766766
func (r *KubeadmConfigReconciler) MachineToBootstrapMapFunc(o client.Object) []ctrl.Request {
767767
m, ok := o.(*clusterv1.Machine)

internal/controllers/machineset/machineset_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ func (r *Reconciler) waitForMachineDeletion(ctx context.Context, machineList []*
561561
return nil
562562
}
563563

564-
// MachineToMachineSets is a handler.ToRequestsFunc to be used to enqeue requests for reconciliation
564+
// MachineToMachineSets is a handler.ToRequestsFunc to be used to enqueue requests for reconciliation
565565
// for MachineSets that might adopt an orphaned Machine.
566566
func (r *Reconciler) MachineToMachineSets(o client.Object) []ctrl.Request {
567567
ctx := context.Background()

test/infrastructure/docker/internal/controllers/dockermachine_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ func (r *DockerMachineReconciler) SetupWithManager(ctx context.Context, mgr ctrl
385385
)
386386
}
387387

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

0 commit comments

Comments
 (0)