Fix typo overrided -> overridden (#20687)
This commit is contained in:
parent
cb97114e91
commit
d4326afb25
1 changed files with 3 additions and 3 deletions
6
main.go
6
main.go
|
@ -171,9 +171,9 @@ func setAppHelpTemplates() {
|
|||
}
|
||||
|
||||
func adjustHelpTemplate(originalTemplate string) string {
|
||||
overrided := ""
|
||||
overridden := ""
|
||||
if _, ok := os.LookupEnv("GITEA_CUSTOM"); ok {
|
||||
overrided = "(GITEA_CUSTOM)"
|
||||
overridden = "(GITEA_CUSTOM)"
|
||||
}
|
||||
|
||||
return fmt.Sprintf(`%s
|
||||
|
@ -183,7 +183,7 @@ DEFAULT CONFIGURATION:
|
|||
AppPath: %s
|
||||
AppWorkPath: %s
|
||||
|
||||
`, originalTemplate, setting.CustomPath, overrided, setting.CustomConf, setting.AppPath, setting.AppWorkPath)
|
||||
`, originalTemplate, setting.CustomPath, overridden, setting.CustomConf, setting.AppPath, setting.AppWorkPath)
|
||||
}
|
||||
|
||||
func formatBuiltWith() string {
|
||||
|
|
Reference in a new issue