Skip to content

Commit

Permalink
minor consistent ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
alpancs committed Mar 20, 2024
1 parent c75f530 commit aea77ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quranize/transliterations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pub(super) fn contextual_map(c0: char, c1: char) -> &'static [&'static str] {
| (KASRA, LETTER_ALEF)
| (KASRA, LETTER_LAM)
| (HAMZA_ABOVE, LETTER_ALEF) => &[""],
('\0', LETTER_ALEF) => &["i", "u"],
('\0', LETTER_ALEF) => &["u", "i"],
(_, SHADDA) => map(c0),
_ => &[],
}
Expand Down

0 comments on commit aea77ce

Please sign in to comment.