Skip to content

Commit 13941dc

Browse files
authored
use more accurate regex vocabulary
1 parent 96680e3 commit 13941dc

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
@@ -374,9 +374,9 @@ tokens:
374374
- complemented simple character classes (`[^abc]`);
375375
- complemented range character classes (`[^a-z]`);
376376
- simple quantifiers: `+` (one or more), `*` (zero or more), `?` (zero or one),
377-
and their lazy versions (`+?`, `*?`, `??`);
377+
and their non-greedy versions (`+?`, `*?`, `??`);
378378
- range quantifiers: `{x}` (exactly x occurrences), `{x,y}` (at least x, at most
379-
y, occurrences), {x,} (x occurrences or more), and their lazy versions;
379+
y, occurrences), {x,} (x occurrences or more), and their non-greedy versions;
380380
- the beginning-of-input (`^`) and end-of-input (`$`) anchors;
381381
- simple grouping (using `(` and `)`) and alternation (`|`).
382382

0 commit comments

Comments
 (0)