Remove stray generics

This commit is contained in:
Maybe Waffle 2022-01-12 13:46:25 +03:00
parent dad5d5d4b1
commit 4a04750790
2 changed files with 2 additions and 2 deletions

View file

@ -104,7 +104,7 @@ impl InlineQueryResultArticle {
self
}
pub fn thumb_url<S>(mut self, val: reqwest::Url) -> Self {
pub fn thumb_url(mut self, val: reqwest::Url) -> Self {
self.thumb_url = Some(val);
self
}

View file

@ -137,7 +137,7 @@ impl InlineQueryResultLocation {
self
}
pub fn thumb_url<S>(mut self, val: reqwest::Url) -> Self {
pub fn thumb_url(mut self, val: reqwest::Url) -> Self {
self.thumb_url = Some(val);
self
}