Skip to content

Commit

Permalink
Fix pronunciation of Reading
Browse files Browse the repository at this point in the history
Force to be "Redding" to so it's not pronounced like "reading a book".
  • Loading branch information
martincostello committed Nov 29, 2023
1 parent 0d28960 commit 81c94d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/LondonTravel.Skill/Verbalizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ internal static string Verbalize(string text)
.Replace("tfl", "T.F.L.", StringComparison.Ordinal)
.Replace("TFL", "T.F.L.", StringComparison.Ordinal)
.Replace("TfL", "T.F.L.", StringComparison.Ordinal)
.Replace(" & ", " and ", StringComparison.Ordinal);
.Replace(" & ", " and ", StringComparison.Ordinal)
.Replace(" Reading ", " Redding ", StringComparison.Ordinal);
}
}

0 comments on commit 81c94d9

Please sign in to comment.