From 734768dd542e66996209fc3d0c344b0e3b73c19c Mon Sep 17 00:00:00 2001 From: DenChenn Date: Wed, 23 Oct 2024 18:33:19 +0800 Subject: [PATCH] refactor: fix wrong comment Signed-off-by: DenChenn --- flytepropeller/pkg/apis/flyteworkflow/v1alpha1/register.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/register.go b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/register.go index 065b8a8852..8e0d96ada3 100644 --- a/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/register.go +++ b/flytepropeller/pkg/apis/flyteworkflow/v1alpha1/register.go @@ -13,7 +13,7 @@ const FlyteWorkflowKind = "flyteworkflow" // SchemeGroupVersion is group version used to register these objects var SchemeGroupVersion = schema.GroupVersion{Group: flyteworkflow.GroupName, Version: "v1alpha1"} -// GetKind takes an unqualified kind and returns back a Group qualified GroupKind +// Kind takes an unqualified kind and returns back a Group qualified GroupKind func Kind(kind string) schema.GroupKind { return SchemeGroupVersion.WithKind(kind).GroupKind() }