From 63b6605a9f1c8e86ef0cf52c7492cc54eddacf38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Ma=C5=82ek?= Date: Thu, 1 Aug 2024 12:07:07 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Mattia Lavacca --- controller/konnect/conditions.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/controller/konnect/conditions.go b/controller/konnect/conditions.go index 4860b0f02..441ae6efc 100644 --- a/controller/konnect/conditions.go +++ b/controller/konnect/conditions.go @@ -6,9 +6,11 @@ const ( KonnectAPIAuthConfigurationValidConditionType = "Valid" // KonnectAPIAuthConfigurationReasonValid is the reason used with the Valid - // condition type indiciating that the APIAuth configuration is valid. + // condition type indicating that the APIAuth configuration is valid. + // It is intended to be used when the condition status is false. KonnectAPIAuthConfigurationReasonValid = "Valid" // KonnectAPIAuthConfigurationReasonValid is the reason used with the Valid - // condition type indiciating that the APIAuth configuration is invalid. + // condition type indicating that the APIAuth configuration is invalid. + // It is intended to be used when the condition status is false. KonnectAPIAuthConfigurationReasonInvalid = "Invalid" )