From 26536e1042381909b66fc052e87cb08a4363bb3a Mon Sep 17 00:00:00 2001 From: Lars Willighagen Date: Sun, 5 Jan 2025 12:49:18 +0100 Subject: [PATCH] Fix q-ws rule in KQL grammar --- 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 ```