Fix warnings.

This commit is contained in:
AB
2020-12-27 23:10:29 +03:00
parent 35a177f1d2
commit 16118ae6db
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,6 @@
extern crate mystem;
#[allow(unused_must_use)]
fn main() -> Result<(), mystem::AppError> {
let mut instance = mystem::MyStem::new()?;
for stem in instance.stemming("Связался с лучшим - подохни как все.".into())?
@ -7,7 +8,6 @@ fn main() -> Result<(), mystem::AppError> {
println!("{} is a lexeme of {}", stem.lex, stem.text)
}
#[allow(unused_must_use)]
instance.terminate();
Ok(())
}