1
0
Fork 0
mirror of https://gitlab.com/news-flash/article_scraper.git synced 2025-07-09 00:45:31 +02:00

remove life time annotations added by rust 2018

This commit is contained in:
Jan Lukas Gernert 2018-12-08 23:25:07 +01:00
parent 02356a51aa
commit e1905d3c2c
5 changed files with 21 additions and 21 deletions

View file

@ -37,7 +37,7 @@ impl Fail for ScraperError {
}
impl fmt::Display for ScraperError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fmt::Display::fmt(&self.inner, f)
}
}