Skip to content

Commit

Permalink
fix umlaut example
Browse files Browse the repository at this point in the history
replace redundant `Ä` with missing `Ö`
  • Loading branch information
yetzt authored Oct 18, 2022
1 parent 0d4f3f5 commit 6d41f82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ latinize.characters['Ω'] = 'O';

// modify the behavior for German umlauts
_.extend(latinize.characters,
{'Ä': 'Ae', 'Ä': 'Ae', 'Ü': 'Ue', 'ä': 'ae', 'ö': 'oe', 'ü': 'ue'});
{'Ä': 'Ae', 'Ö': 'Oe', 'Ü': 'Ue', 'ä': 'ae', 'ö': 'oe', 'ü': 'ue'});
```

## Details
Expand Down

0 comments on commit 6d41f82

Please sign in to comment.