From b685d81e003de2e23782401d0c412a77c05a2481 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad <600878@stud.hvl.no> Date: Wed, 3 Jul 2024 11:24:28 +0200 Subject: [PATCH] comment --- src/nom/combinators.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nom/combinators.rs b/src/nom/combinators.rs index 63fd448..78dbd1d 100644 --- a/src/nom/combinators.rs +++ b/src/nom/combinators.rs @@ -31,6 +31,7 @@ pub fn parenthesized<'a, Parser, R>(inner: Parser) -> impl FnMut(&'a str) -> IRe where Parser: FnMut(&'a str) -> IResult<&'a str, R>, { + // TODO move trim out of here delimited(char('('), trim(inner), char(')')) }