Skip to content

Commit 840079e

Browse files
committed
Add Spell Checking in CI
1 parent 1e60fcb commit 840079e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/controller/metalstackcluster_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ func (r *MetalStackClusterReconciler) Reconcile(ctx context.Context, req ctrl.Re
120120
if statusErr != nil {
121121
err = errors.Join(err, fmt.Errorf("unable to update status: %w", statusErr))
122122
} else if !reconciler.infraCluster.Status.Ready {
123-
err = errors.New("cluster is not yet ready, requeueing")
123+
err = errors.New("cluster is not yet ready, requeuing")
124124
}
125125
}()
126126

internal/controller/metalstackmachine_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ func (r *MetalStackMachineReconciler) Reconcile(ctx context.Context, req ctrl.Re
145145
if statusErr != nil {
146146
err = errors.Join(err, fmt.Errorf("unable to update status: %w", statusErr))
147147
} else if !reconciler.infraMachine.Status.Ready {
148-
err = errors.New("machine is not yet ready, requeueing")
148+
err = errors.New("machine is not yet ready, requeuing")
149149
}
150150
}()
151151

0 commit comments

Comments
 (0)