forked from an/flokati
fix
This commit is contained in:
parent
d78d1fc07a
commit
ab8e21b716
2 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@ func NumberToString(n int, sep rune) string {
|
|||
return buf.String()
|
||||
}
|
||||
|
||||
func ReplaceUmlauts(s string) ret string {
|
||||
func ReplaceUmlauts(s string) (ret string) {
|
||||
ret := strings.Replace(s, "Ä", "Ae", -1)
|
||||
ret = strings.Replace(ret, "Ö", "Oe", -1)
|
||||
ret = strings.Replace(ret, "Ü", "Ue", -1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue