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 specs/jsonschema-core.md
Original file line number Diff line number Diff line change
Expand Up @@ -374,9 +374,9 @@ tokens:
- complemented simple character classes (`[^abc]`);
- complemented range character classes (`[^a-z]`);
- simple quantifiers: `+` (one or more), `*` (zero or more), `?` (zero or one),
and their lazy versions (`+?`, `*?`, `??`);
and their non-greedy versions (`+?`, `*?`, `??`);
- range quantifiers: `{x}` (exactly x occurrences), `{x,y}` (at least x, at most
y, occurrences), {x,} (x occurrences or more), and their lazy versions;
y, occurrences), {x,} (x occurrences or more), and their non-greedy versions;
- the beginning-of-input (`^`) and end-of-input (`$`) anchors;
- simple grouping (using `(` and `)`) and alternation (`|`).

Expand Down
Loading