From c237c0097b50f669f5607a15feafcf1fd6ce40c1 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Mon, 1 Apr 2024 01:11:43 -0700 Subject: [PATCH] Fix Error::TmpdirIo error message (#1987) --- src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error.rs b/src/error.rs index c71cbb9..3411bd0 100644 --- a/src/error.rs +++ b/src/error.rs @@ -399,7 +399,7 @@ impl<'src> ColorDisplay for Error<'src> { } TmpdirIo { recipe, io_error } => { write!(f, "Recipe `{recipe}` could not be run because of an IO error while trying to create a temporary \ - directory or write a file to that directory`:{io_error}")?; + directory or write a file to that directory: {io_error}")?; } Unknown { recipe, line_number} => { if let Some(n) = line_number {