Skip to content
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions spec/syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ A _quoted pattern_ starts with a sequence of two U+007B LEFT CURLY BRACKET `{{`
and ends with a sequence of two U+007D RIGHT CURLY BRACKET `}}`.

```abnf
quoted-pattern = o "{{" pattern "}}"
quoted-pattern = "{{" pattern "}}"
```

A _quoted pattern_ MAY be empty.
Expand Down Expand Up @@ -449,7 +449,7 @@ Each _key_ is separated from each other by whitespace.
Whitespace is permitted but not required between the last _key_ and the _quoted pattern_.

```abnf
variant = key *(s key) quoted-pattern
variant = key *(s key) o quoted-pattern
key = literal / "*"
```

Expand Down