From 9a2a665c952b94166292bc13c8ee3caa924680cf Mon Sep 17 00:00:00 2001
From: troychiu <y.troychiu@gmail.com>
Date: Thu, 31 Oct 2024 16:31:39 -0700
Subject: [PATCH] nit

Signed-off-by: troychiu <y.troychiu@gmail.com>
---
 flyteadmin/pkg/common/filters.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flyteadmin/pkg/common/filters.go b/flyteadmin/pkg/common/filters.go
index 9f0426d3ee..0aecd84db0 100644
--- a/flyteadmin/pkg/common/filters.go
+++ b/flyteadmin/pkg/common/filters.go
@@ -211,7 +211,7 @@ func (f *inlineFilterImpl) getGormQueryExpr(formattedField string) (GormQueryExp
 		}, nil
 	case NotContains:
 		return GormQueryExpr{
-			// WHERE field LIKE %value%
+			// WHERE field NOT LIKE %value%
 			Query: fmt.Sprintf(notContainsQuery, formattedField),
 			// args renders to something like: "%value%"
 			Args: fmt.Sprintf(notContainsArgs, f.value),