diff --git a/pkg/config/interface.go b/pkg/config/interface.go index 9ce7da8ba24..1eb9ac949a9 100644 --- a/pkg/config/interface.go +++ b/pkg/config/interface.go @@ -95,8 +95,8 @@ type Config interface { /* Persistence */ - // Marshal returns the YAML representation of the Config. + // MarshalYAML Marshal returns the YAML representation of the Config. MarshalYAML() ([]byte, error) - // Unmarshal loads the Config fields from its YAML representation. + // UnmarshalYAML Unmarshal loads the Config fields from its YAML representation. UnmarshalYAML([]byte) error }