diff --git a/v2/tools/generator/internal/config/type_configuration.go b/v2/tools/generator/internal/config/type_configuration.go index 7a16456e25c..cf0b89494ce 100644 --- a/v2/tools/generator/internal/config/type_configuration.go +++ b/v2/tools/generator/internal/config/type_configuration.go @@ -62,9 +62,9 @@ const ( ) type OperatorSpecPropertyConfiguration struct { - Name string `yaml:"name",omitempty` // Name of the new property - Type string `yaml:"type",omitempty` // Primitive type of the new property (e.g. string, int, etc.) - Description string `yaml:"description",omitempty` // Description to include on the property + Name string `yaml:"name", omitempty` // Name of the new property + Type string `yaml:"type", omitempty` // Primitive type of the new property (e.g. string, int, etc.) + Description string `yaml:"description", omitempty` // Description to include on the property } func NewTypeConfiguration(name string) *TypeConfiguration {