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
We do not apply the misspelling/normalisation rules of the names index to uninomials. Genus names are often very much alike and a single character does make a difference.
But my feeling is that this is a bit too strict and we could come up with some common misspellings like double characters that should be applied? For binomen we do this, seems to me we could apply the same also for monomials:
// normalize frequent variations of is = i.matcher(s).replaceAll("i");
// remove repeated letters→leters in binomialss = removeRepeatedLetter.matcher(s).replaceAll("$1");
// normalize frequent variations of t/r sometimes followed by an 'h'returntrh.matcher(s).replaceAll("$1");
The text was updated successfully, but these errors were encountered: