Skip to content

Commit

Permalink
fix: Add missing quotes to examples. (#22)
Browse files Browse the repository at this point in the history
This ensures that all examples in the filtering EBNF specification are
consistently quoted with backticks.

Co-authored-by: Oscar Söderlund <[email protected]>
Co-authored-by: Luke Sneeringer <[email protected]>
  • Loading branch information
3 people authored Jan 7, 2021
1 parent 0acc689 commit 2210f42
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aip_site/support/assets/misc/ebnf-filtering.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}
;
Expand All @@ -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
Expand Down

0 comments on commit 2210f42

Please sign in to comment.