diff --git a/filter-parser/src/lib.rs b/filter-parser/src/lib.rs index c595cf827..4a247356c 100644 --- a/filter-parser/src/lib.rs +++ b/filter-parser/src/lib.rs @@ -343,9 +343,7 @@ fn parse_error_reserved_keyword(input: Span) -> IResult { } } -/** -primary = (WS* "(" WS* expression WS* ")" WS*) | geoRadius | condition | exists | not_exists | to -*/ +/// primary = (WS* "(" WS* expression WS* ")" WS*) | geoRadius | condition | exists | not_exists | to fn parse_primary(input: Span, depth: usize) -> IResult { if depth > MAX_FILTER_DEPTH { return Err(nom::Err::Error(Error::new_from_kind(input, ErrorKind::DepthLimitReached)));