Fix sad error with spanish substitution.

This commit is contained in:
Patrick D'appollonio 2014-06-12 00:29:55 -04:00 committed by Dobrosław Żybort
parent 994cac2e4a
commit 8b827f5f3e
1 changed files with 2 additions and 2 deletions

View File

@ -21,6 +21,6 @@ var plSub = map[rune]string{
}
var esSub = map[rune]string{
'&': "i",
'@': "na",
'&': "y",
'@': "en",
}