diff options
author | Hristo Venev <hristo@venev.name> | 2019-09-30 14:54:09 +0300 |
---|---|---|
committer | Hristo Venev <hristo@venev.name> | 2019-09-30 15:34:34 +0300 |
commit | e7e12e4c27ba462a9f8e6ec15373d00c3d72bb24 (patch) | |
tree | 67ac67cdb3c7cc6fa9db8b097f9be3db4cbaebd9 /src/fileutil.rs | |
parent | 5cd9be6edd6cfc6f492907709eb1cfda4a99923f (diff) |
Lowercase errors.
Diffstat (limited to 'src/fileutil.rs')
-rw-r--r-- | src/fileutil.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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"); } } |