From c6c9b71c55bb6129534c8826f078212afbab6bdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oscar=20S=C3=B6derlund?= Date: Sun, 3 Jan 2021 16:07:50 +0100 Subject: [PATCH] fix(ebnf-filtering): Add missing quotes to examples. This ensures that all examples in the filtering EBNF specification are consistently quoted with backticks. --- aip_site/support/assets/misc/ebnf-filtering.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aip_site/support/assets/misc/ebnf-filtering.txt b/aip_site/support/assets/misc/ebnf-filtering.txt index 72c4ebf..7830348 100644 --- a/aip_site/support/assets/misc/ebnf-filtering.txt +++ b/aip_site/support/assets/misc/ebnf-filtering.txt @@ -100,7 +100,7 @@ comparable # Member expressions are either value or DOT qualified field references. # -# Example: expr.type_map.1.type +# Example: `expr.type_map.1.type` member : value {DOT field} ; @@ -112,8 +112,8 @@ member # `arguments` function must be provided by the host service. # # Examples: -# * regex(m.key, '^.*prod.*$') -# * math.mem('30mb') +# * `regex(m.key, '^.*prod.*$')` +# * `math.mem('30mb')` # # Antipattern: simple and qualified function names may include keywords: # NOT, AND, OR. It is not recommended that any of these names be used