aboutsummaryrefslogtreecommitdiff
path: root/rprt-engine/src/parser.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rprt-engine/src/parser.rs')
-rw-r--r--rprt-engine/src/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rprt-engine/src/parser.rs b/rprt-engine/src/parser.rs
index c98d977..78c28c0 100644
--- a/rprt-engine/src/parser.rs
+++ b/rprt-engine/src/parser.rs
@@ -4,7 +4,7 @@ use crate::token::*;
#[derive(Debug, Clone)]
pub enum ParseError {
UnexpectedToken {
- found: Token, // Own the token, don't borrow it
+ found: Token,
expecting: &'static str,
},
UnexpectedEndOfInput {