Fix: useless use of format! (cargo clippy warning)
This commit is contained in:
parent
397a805ffd
commit
c6ae86dbb4
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ impl SearchEngine for Startpage {
|
||||||
.parse_for_results(&document, |title, url, desc| {
|
.parse_for_results(&document, |title, url, desc| {
|
||||||
Some(SearchResult::new(
|
Some(SearchResult::new(
|
||||||
title.inner_html().trim(),
|
title.inner_html().trim(),
|
||||||
&format!("{}", url.inner_html().trim()),
|
url.inner_html().trim(),
|
||||||
desc.inner_html().trim(),
|
desc.inner_html().trim(),
|
||||||
&["startpage"],
|
&["startpage"],
|
||||||
))
|
))
|
||||||
|
|
Loading…
Add table
Reference in a new issue