diff --git a/src/misc.rs b/src/misc.rs index 6c0bc2a..3039384 100644 --- a/src/misc.rs +++ b/src/misc.rs @@ -8,7 +8,7 @@ pub fn sanitize_target_string(target: String) -> String { .replace("www.", "") .replace("https://", "") .replace("http://", "") - .replace("/", "") + .replace('/', "") } pub fn return_matches_vec(matches: &clap::ArgMatches, value: &str) -> Vec {