aboutsummaryrefslogtreecommitdiff
path: root/src/deck.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/deck.rs')
-rw-r--r--src/deck.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/deck.rs b/src/deck.rs
index 82566bd..d23529f 100644
--- a/src/deck.rs
+++ b/src/deck.rs
@@ -13,7 +13,7 @@ struct ParseError {
impl fmt::Display for ParseError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
- write!(f, "{} (parsing line {})", self.message, self.line)
+ write!(f, "Line {}: {}", self.line, self.message)
}
}