summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-10-26 21:35:36 -0400
committerJohn Turner <jturner.usa@gmail.com>2025-10-26 21:35:36 -0400
commit191a3e2d48e153492e1480166a8511d0563c957c (patch)
tree659f3490dd2b2c83238d558405dad8b427f301a4 /tests
parent93933d808de27af1b45a120ce449b4cdfa2235c3 (diff)
downloadmon-191a3e2d48e153492e1480166a8511d0563c957c.tar.gz
take reference to regex struct in Regex parser
Diffstat (limited to 'tests')
-rw-r--r--tests/sexpr.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/sexpr.rs b/tests/sexpr.rs
index 651d534..dd00b73 100644
--- a/tests/sexpr.rs
+++ b/tests/sexpr.rs
@@ -1,8 +1,8 @@
#![allow(dead_code)]
use mon::{
- alpha1, alphanumeric, alphanumeric1, input::InputIter, numeric1, tag, whitespace, Parser,
- ParserResult,
+ Parser, ParserResult, alpha1, alphanumeric, alphanumeric1, input::InputIter, numeric1, tag,
+ whitespace,
};
#[derive(Debug)]