From 5f039cee49b9c817177c6feecc5e7d97fb0a57e1 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Sat, 11 Jul 2020 04:01:45 +0300 Subject: Remove alacritty.yml mentions from font crate errors --- alacritty/src/renderer/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'alacritty/src/renderer/mod.rs') diff --git a/alacritty/src/renderer/mod.rs b/alacritty/src/renderer/mod.rs index 8fd6c087..99e4afbc 100644 --- a/alacritty/src/renderer/mod.rs +++ b/alacritty/src/renderer/mod.rs @@ -1452,7 +1452,7 @@ impl std::error::Error for ShaderCreationError { impl Display for ShaderCreationError { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { match self { - ShaderCreationError::Io(err) => write!(f, "Couldn't read shader: {}", err), + ShaderCreationError::Io(err) => write!(f, "Unable to read shader: {}", err), ShaderCreationError::Compile(path, log) => { write!(f, "Failed compiling shader at {}: {}", path.display(), log) }, -- cgit