Skip to content

Commit c8af81f

Browse files
committed
APIGOV-29620 - fix typo
1 parent b71a61f commit c8af81f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/cmd/properties/properties.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -612,16 +612,16 @@ func (p *properties) ObjectSlicePropertyValue(name string) []map[string]interfac
612612
}
613613
values := p.envIntfArrayPropValues[name]
614614
for _, mapValues := range values {
615-
p.resolveObjSlieceValues(mapValues)
615+
p.resolveObjSliceValues(mapValues)
616616
}
617617
return values
618618
}
619619

620-
func (p *properties) resolveObjSlieceValues(mapValues map[string]interface{}) {
620+
func (p *properties) resolveObjSliceValues(mapValues map[string]interface{}) {
621621
for name, valueIface := range mapValues {
622622
switch val := valueIface.(type) {
623623
case map[string]interface{}:
624-
p.resolveObjSlieceValues(val)
624+
p.resolveObjSliceValues(val)
625625
case string:
626626
mapValues[name] = p.resolveSecretReference(name, val)
627627
}

0 commit comments

Comments
 (0)