removing unnecessary static

This commit is contained in:
Tom Alexander 2020-04-11 21:07:39 -04:00
parent 63124bc6e3
commit 9e1f102540
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ mod tests {
}
}
fn do_the_walk<'a>(c: &'a (dyn Walkable<Output = &'static str> + 'a), path: &str) -> &'a str {
fn do_the_walk<'a>(c: &'a (dyn Walkable<Output = &str> + 'a), path: &str) -> &'a str {
c.walk(path)
}