From 3b2b99b9c588f48674756c30886554ac1b434945 Mon Sep 17 00:00:00 2001 From: Gabe Montero Date: Tue, 31 Aug 2021 15:08:58 -0400 Subject: [PATCH] Update controllers/shipwrightbuild_controller.go Co-authored-by: Adam Kaplan --- controllers/shipwrightbuild_controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/shipwrightbuild_controller.go b/controllers/shipwrightbuild_controller.go index 8a426558..8f3e9fb0 100644 --- a/controllers/shipwrightbuild_controller.go +++ b/controllers/shipwrightbuild_controller.go @@ -112,7 +112,7 @@ func (r *ShipwrightBuildReconciler) Reconcile(ctx context.Context, req ctrl.Requ return RequeueWithError(err) } if version.Minor() < 49 { - retErr := fmt.Errorf("Shipwright requires at leave v0.49.0 of the Tekton Operator, but the minor number is %d", version.Minor()) + retErr := fmt.Errorf("Shipwright requires at least v0.49.0 of the Tekton Operator, but the minor number is %d", version.Minor()) return RequeueWithError(retErr) }