From bc9daf90410ca09abdb84e0fdc03b74c68d35ce4 Mon Sep 17 00:00:00 2001 From: Tamo Date: Tue, 9 Nov 2021 01:00:42 +0100 Subject: [PATCH] update the bnf Co-authored-by: marin --- filter_parser/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filter_parser/src/lib.rs b/filter_parser/src/lib.rs index c4091fa86..40e1fb3d4 100644 --- a/filter_parser/src/lib.rs +++ b/filter_parser/src/lib.rs @@ -11,7 +11,7 @@ //! to = value value TO value //! value = WS* ~ ( word | singleQuoted | doubleQuoted) ~ WS* //! singleQuoted = "'" .* all but quotes "'" -//! doubleQuoted = "\"" (word | spaces)* "\"" +//! doubleQuoted = "\"" .* all but double quotes "\"" //! word = (alphanumeric | _ | - | .)+ //! geoRadius = WS* ~ "_geoRadius(" ~ float ~ "," ~ float ~ "," float ~ ")" //! ```