From 267ab432cf695c7682b1827d5662257cc7652cff Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Wed, 15 May 2024 16:51:12 -0700 Subject: [PATCH] chore: partial revert - only &str has chars(), but Box should auto-deref --- src/spec.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spec.rs b/src/spec.rs index 7b238c50..893228e4 100644 --- a/src/spec.rs +++ b/src/spec.rs @@ -227,7 +227,7 @@ impl Zip64CentralDirectoryEnd { } } -pub(crate) fn is_dir>(filename: T) -> bool { +pub(crate) fn is_dir(filename: &str) -> bool { filename .chars() .next_back()