Subject: | A couple of rule bugs in Text::Phonetic::Phonix |
Thanks much for the Perl Module Text::Phonetic::Phonix !
I'm using it as a source for my Haskell implementation,
since the original article doesn't seem to be available
online. However, I found a couple of bugs in the ruleset as
it appears on CPAN:
1) There are two rules right together with the same
precondition "qr/($VOVEL)Q($VOVEL)/". The second one
should be "qr/($VOVEL)J($VOVEL)/".
2) There's a rule with precondition
"qr/(\w)GN($CONSONANT)v/". The "v" is a typo, and
should be removed.
Just thought you'd like to know. Again, thanks much.