Remove needless lifetimes (#2845)

* Remove lifetimes that could be elided

* rustfmt
This commit is contained in:
eupn
2019-05-25 23:13:36 +07:00
committed by Antioch Peverell
parent f17dd5fa44
commit 249fe03d5c
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -125,8 +125,8 @@ where
}
}
fn build_request<'a>(
url: &'a str,
fn build_request(
url: &str,
method: &str,
api_secret: Option<String>,
body: Option<String>,