From 5864f71cf60b11592e439096adc8080e0169c7f8 Mon Sep 17 00:00:00 2001 From: Ahmad Ibrahim Date: Wed, 11 Sep 2024 10:49:18 -0700 Subject: [PATCH] chore: fix comments --- pkg/cmd/validator/validator.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/cmd/validator/validator.go b/pkg/cmd/validator/validator.go index bc652fc3..c009761d 100644 --- a/pkg/cmd/validator/validator.go +++ b/pkg/cmd/validator/validator.go @@ -195,7 +195,7 @@ func InstallValidatorCommand(c *cfg.Config, tc *cfg.TaskConfig) error { return nil } -// ConfigureCommand configures and applies/executes validator plugin rules +// ConfigureCommand configures and applies validator plugin rules func ConfigureCommand(c *cfg.Config, tc *cfg.TaskConfig) error { vc, err := configureValidatorConfig(c, tc) if err != nil { @@ -229,7 +229,7 @@ func ConfigureCommand(c *cfg.Config, tc *cfg.TaskConfig) error { return nil } -// CheckCommand configures and applies/executes validator plugin rules +// CheckCommand configures and executes validator plugin rules func CheckCommand(c *cfg.Config, tc *cfg.TaskConfig) error { if tc.CustomResources != "" { pluginSpecs, err := readPluginSpecs(tc.CustomResources)