From 967d1f76218020fba71ad4cefc61dda0557ff1c5 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 21 Nov 2023 11:20:35 -0800 Subject: [PATCH] Sort --- src/compile_error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compile_error.rs b/src/compile_error.rs index 263e883f8b..97406d40fc 100644 --- a/src/compile_error.rs +++ b/src/compile_error.rs @@ -135,6 +135,7 @@ impl Display for CompileError<'_> { Count("argument", *found), expected.display(), ), + IncludeMissingPath => write!(f, "!include directive has no argument",), InconsistentLeadingWhitespace { expected, found } => write!( f, "Recipe line has inconsistent leading whitespace. Recipe started with `{}` but found \ @@ -158,7 +159,6 @@ impl Display for CompileError<'_> { _ => character.escape_default().collect(), } ), - IncludeMissingPath => write!(f, "!include directive has no argument",), MismatchedClosingDelimiter { open, open_line,