From e7e12e4c27ba462a9f8e6ec15373d00c3d72bb24 Mon Sep 17 00:00:00 2001 From: Hristo Venev Date: Mon, 30 Sep 2019 14:54:09 +0300 Subject: Lowercase errors. --- src/fileutil.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/fileutil.rs') diff --git a/src/fileutil.rs b/src/fileutil.rs index d00575b..c124fae 100644 --- a/src/fileutil.rs +++ b/src/fileutil.rs @@ -18,7 +18,7 @@ impl Drop for Temp { if self.path.as_os_str().is_empty() { return; } - fs::remove_file(&self.path).expect("Failed to clean up temporary file"); + fs::remove_file(&self.path).expect("failed to clean up temporary file"); } } -- cgit