summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Zhao <jeff.no.zhao@gmail.com>2023-07-23 15:27:17 -0400
committerJeff Zhao <jeff.no.zhao@gmail.com>2023-07-23 15:27:17 -0400
commit5d2473f6e4a21eacde29067d2b3f53e5e6ee2784 (patch)
tree48e01d9dbef7add37cf9e904418889d832bf39a3
parent461f09532ca9cb8b104b03927843e48779747d7d (diff)
fix typo
-rw-r--r--src/io/io_worker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/io/io_worker.rs b/src/io/io_worker.rs
index 3be08e6..b8d5113 100644
--- a/src/io/io_worker.rs
+++ b/src/io/io_worker.rs
@@ -330,7 +330,7 @@ pub fn recursive_cut(
}
#[cfg(feature = "recycle_bin")]
-fn trash_error_to_io_error(err: ::Error) -> std::io::Error {
+fn trash_error_to_io_error(err: trash::Error) -> std::io::Error {
match err {
trash::Error::Unknown { description } => {
std::io::Error::new(std::io::ErrorKind::Other, description)