From 73597cc0cbe1cdd2380af0332b45a96ab2a27c8f Mon Sep 17 00:00:00 2001 From: j-mendez Date: Tue, 25 Jun 2024 11:27:57 -0400 Subject: [PATCH] chore(write): fix stable error --- src/content/write.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/write.rs b/src/content/write.rs index 4dc1580..8b7961e 100644 --- a/src/content/write.rs +++ b/src/content/write.rs @@ -187,7 +187,7 @@ impl AsyncWriter { }))))) } _ => Err(Error::IoError( - std::io::Error::other("File not created"), + std::io::Error::new(std::io::ErrorKind::Other, "temp file create error"), "Possible memory issues for file handle".into(), )), }