From 16f0479a4e43a58c04796e9aa4d43d92b2655024 Mon Sep 17 00:00:00 2001 From: tslil Date: Sat, 18 Oct 2025 20:19:32 +0100 Subject: Add display implementations for Composite, and a BQN-like explainer --- rprt-engine/src/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rprt-engine/src/parser.rs') 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 { -- cgit v1.2.3