Skip to content

Commit 9b9d3f8

Browse files
srtaalejzimeg
andauthored
Update internal/pkg/create/create.go
Co-authored-by: Eden Zimbelman <eden.zimbelman@salesforce.com>
1 parent 7e4d486 commit 9b9d3f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/pkg/create/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ func getAppDirName(appName string) (string, error) {
180180
return "", fmt.Errorf("app name is required")
181181
}
182182

183-
// Normalize to kebab-case: lowercase, replace non-alphanumeric with dashes, collapse, and trim
183+
// Normalize to a variation of kebab-case: replace non-alphanumeric with dashes, collapse, and trim
184184
appName = strings.TrimSpace(appName)
185185
appName = strings.ToLower(appName)
186186
appName = nonAlphanumericRe.ReplaceAllString(appName, "-")

0 commit comments

Comments
 (0)