remove apostrophes

This commit is contained in:
boyska 2020-05-19 00:02:43 +02:00
parent 7b1a6a93e3
commit 86b9a60648

View file

@ -50,6 +50,7 @@ impl Iterator for Dictionary{
fn line_to_word(l: String) -> String {
let l = unidecode(&l);
let l = l.to_lowercase();
let l = l.replace("'", "");
l
}