You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi everybody!
I've found an error in BJSpell.js inside the parse function. This code:
if((re === "." || new RegExp(re + "$").test(seek)) && this.words[seek]){
result = true;
break;
}
has to be like this:
if((re === "." || new RegExp(re + "$").test(seek)) && this.words[seek] && new
RegExp(".*" + select + ".*").test(this.words[seek])){
result = true;
break;
}
otherwise the suffix rules will be applicate words that are not involved by the
rule.
Cheers
Original issue reported on code.google.com by [email protected] on 18 Oct 2012 at 10:32
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 18 Oct 2012 at 10:32The text was updated successfully, but these errors were encountered: