From 72a3c769d720543323ae4e850be8fdf9c78a211c Mon Sep 17 00:00:00 2001 From: Lars Willighagen Date: Sun, 5 Jan 2025 16:35:37 +0100 Subject: [PATCH] Fix q-ws rule in KQL grammar (#463) --- QUERY-SPEC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QUERY-SPEC.md b/QUERY-SPEC.md index 70e4906..2997370 100644 --- a/QUERY-SPEC.md +++ b/QUERY-SPEC.md @@ -127,5 +127,5 @@ comparison := accessor q-ws* matcher-operator q-ws* ($type | $string | $number | accessor := "val(" q-ws* $integer q-ws* ")" | "prop(" q-ws* $string q-ws* ")" | "name(" q-ws* ")" | "tag(" q-ws* ")" | "values(" q-ws* ")" | "props(" q-ws* ")" | $string matcher-operator := "=" | "!=" | ">" | "<" | ">=" | "<=" | "^=" | "$=" | "*=" -q-ws := $plain-node-space +q-ws := $node-space ```