summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFerris Tseng <ferristseng@fastmail.fm>2021-02-08 23:18:16 -0500
committerFerris Tseng <ferristseng@fastmail.fm>2021-02-08 23:18:16 -0500
commit458400898ca9d6f339ec836d51424cfac3e12300 (patch)
tree140dae20e9588a6474adc08df411ab5293352ae9
parent2a9038d11a6e286c70e2ed28b3ee8d2564877538 (diff)
small clippy change
-rw-r--r--ipfs-api/src/client/from_uri.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipfs-api/src/client/from_uri.rs b/ipfs-api/src/client/from_uri.rs
index 8d22f41..be51cd8 100644
--- a/ipfs-api/src/client/from_uri.rs
+++ b/ipfs-api/src/client/from_uri.rs
@@ -13,7 +13,7 @@ use std::{
str::FromStr,
};
-const VERSION_PATH_V0: &'static str = "/api/v0";
+const VERSION_PATH_V0: &str = "/api/v0";
/// Builds the base url path for the Ipfs api.
///