From 56984dea360c64de17f12a466fe5396d9eea32d6 Mon Sep 17 00:00:00 2001 From: Kasey White Date: Sat, 22 Oct 2022 18:38:01 -0400 Subject: [PATCH] more spacing for parse error --- crates/flat/src/decode/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/flat/src/decode/error.rs b/crates/flat/src/decode/error.rs index f4de82a5..df3b3b4e 100644 --- a/crates/flat/src/decode/error.rs +++ b/crates/flat/src/decode/error.rs @@ -18,7 +18,7 @@ pub enum Error { DecodeChar(u32), #[error("{0}")] Message(String), - #[error("Parse error: So far we parsed {0} and we ran into error: {1}")] + #[error("Parse error: So far we parsed\n\n{0}\n\nand we ran into error: {1}")] ParseError(String, anyhow::Error), #[error(transparent)] Custom(#[from] anyhow::Error),