Skip to content

Commit a091943

Browse files
authored
Merge pull request #1563 from gibson042/2024-11-regex-vocabulary
use more accurate regex vocabulary
2 parents 09d79cf + 4cc993f commit a091943

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

specs/jsonschema-core.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,9 +379,9 @@ tokens:
379379
- complemented simple character classes (`[^abc]`);
380380
- complemented range character classes (`[^a-z]`);
381381
- simple quantifiers: `+` (one or more), `*` (zero or more), `?` (zero or one),
382-
and their lazy versions (`+?`, `*?`, `??`);
382+
and their non-greedy versions (`+?`, `*?`, `??`);
383383
- range quantifiers: `{x}` (exactly x occurrences), `{x,y}` (at least x, at most
384-
y, occurrences), {x,} (x occurrences or more), and their lazy versions;
384+
y, occurrences), `{x,}` (x occurrences or more), and their non-greedy versions;
385385
- the beginning-of-input (`^`) and end-of-input (`$`) anchors;
386386
- simple grouping (using `(` and `)`) and alternation (`|`).
387387

0 commit comments

Comments
 (0)