Skip to content

Commit

Permalink
Sort
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Nov 21, 2023
1 parent 05bce13 commit 967d1f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compile_error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -158,7 +159,6 @@ impl Display for CompileError<'_> {
_ => character.escape_default().collect(),
}
),
IncludeMissingPath => write!(f, "!include directive has no argument",),
MismatchedClosingDelimiter {
open,
open_line,
Expand Down

0 comments on commit 967d1f7

Please sign in to comment.