Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ebnf-filtering): Add missing quotes to examples. #22

Merged
merged 3 commits into from
Jan 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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