Skip to content
This repository was archived by the owner on Apr 18, 2024. It is now read-only.

Commit 5027582

Browse files
author
Saul
committed
fix: fix js comment style
1 parent f483c4a commit 5027582

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/hierarchy.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ func (config Config) GenerateJsPropertiesFile(resources []Resource) string {
105105
if len(list) == 0 {
106106
continue
107107
}
108-
properties += fmt.Sprintf("#\n# %s\n#\n", item.String())
108+
properties += fmt.Sprintf("//\n// %s\n//\n", item.String())
109109
for _, property := range list {
110110
if _, err := strconv.Atoi(property.Value); err == nil {
111111
properties += fmt.Sprintf("window['__%v__']=%v;\n", property.Key, property.Value)

0 commit comments

Comments
 (0)