From 37099803a80fbcb4b5bf309de3362097665b3266 Mon Sep 17 00:00:00 2001 From: knokknok <1275796+knokknok@users.noreply.github.com> Date: Sun, 23 Jun 2024 09:40:31 +0200 Subject: [PATCH] ain(vowel) should retain the 'n' sound --- src/phonetics/french/sonnex.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phonetics/french/sonnex.js b/src/phonetics/french/sonnex.js index 9bc69e4..518c681 100644 --- a/src/phonetics/french/sonnex.js +++ b/src/phonetics/french/sonnex.js @@ -72,7 +72,7 @@ const RULES = { ['ain', '1'], [/ain(.)(.*)$/, (v, cs) => { if (isVowel(v)) - return ['E', v + cs]; + return ['En', v + cs]; return ['1', v + cs]; }], ['ais', 'E'],