Currently
use text_processing_rs::tn_normalize_sentence;
fn main() {
let normalized_text = tn_normalize_sentence("I have twenty one apples.");
println!("{normalized_text}");
}
gives error
error[E0432]: unresolved import `text_processing_rs::tn_normalize_sentence`
--> src/main.rs:6:5
|
6 | use text_processing_rs::tn_normalize_sentence;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `tn_normalize_sentence` in the root
|
help: a similar name exists in the module
|
6 - use text_processing_rs::tn_normalize_sentence;
6 + use text_processing_rs::normalize_sentence;
|
normalize_sentence exists, however tn_normalize_sentence seems not exist.
Currently
gives error
normalize_sentenceexists, howevertn_normalize_sentenceseems not exist.