remove apostrophes
This commit is contained in:
parent
7b1a6a93e3
commit
86b9a60648
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue