Skip to content

Commit

Permalink
Merge pull request #1563 from gibson042/2024-11-regex-vocabulary
Browse files Browse the repository at this point in the history
use more accurate regex vocabulary
  • Loading branch information
gregsdennis authored Feb 3, 2025
2 parents 09d79cf + 4cc993f commit a091943
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions specs/jsonschema-core.md
Original file line number Diff line number Diff line change
Expand Up @@ -379,9 +379,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

0 comments on commit a091943

Please sign in to comment.