We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9c50fc commit e3da2ebCopy full SHA for e3da2eb
stackit/internal/utils/utils.go
@@ -85,8 +85,9 @@ func SupportedValuesDocumentation(values []string) string {
85
}
86
87
func quoteValues(values []string) []string {
88
+ quotedValues := make([]string, len(values))
89
for i, value := range values {
- values[i] = fmt.Sprintf("`%s`", value)
90
+ quotedValues[i] = fmt.Sprintf("`%s`", value)
91
- return values
92
+ return quotedValues
93
0 commit comments