summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-01-19 21:36:42 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-01-19 21:40:50 +1100
commit1f923bdc4ba96ad21846797aadfacf5ecb3890e1 (patch)
tree4ab9deac5d828c11554a371826490640bc0bd453 /pkg
parentb5a8ecf786a7d7593060684029ba97abd7ad093a (diff)
softer auto-generation message
Diffstat (limited to 'pkg')
-rw-r--r--pkg/cheatsheet/generate.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/cheatsheet/generate.go b/pkg/cheatsheet/generate.go
index 513049f23..94eea0687 100644
--- a/pkg/cheatsheet/generate.go
+++ b/pkg/cheatsheet/generate.go
@@ -51,8 +51,8 @@ func generateAtDir(cheatsheetDir string) {
bindingSections := getBindingSections(mApp)
content := formatSections(mApp.Tr, bindingSections)
- content = fmt.Sprintf("# This file is auto-generated. To update, make the changes in the "+
- "pkg/i18n directory and then run `%s` from the project root.\n\n%s", CommandToRun(), content)
+ content = fmt.Sprintf("_This file is auto-generated. To update, make the changes in the "+
+ "pkg/i18n directory and then run `%s` from the project root._\n\n%s", CommandToRun(), content)
writeString(file, content)
}
}