softer auto-generation message

This commit is contained in:
Jesse Duffield 2022-01-19 21:36:42 +11:00
parent b5a8ecf786
commit 1f923bdc4b
5 changed files with 6 additions and 6 deletions

View file

@ -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)
}
}