Skip to content

Commit 3b91977

Browse files
Fix incorrect version in docs (#829)
1 parent f8e7d12 commit 3b91977

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

doc/html/pcre2api.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3526,7 +3526,7 @@ <h2><a name="SEC34" href="#TOC1">ITERATING OVER ALL MATCHES</a></h2>
35263526
for example, replacing all matches in the subject; splitting the subject on all
35273527
matches; or simply counting the number of matches. The <b>pcre2_next_match()</b>
35283528
function helps with this task by providing the appropriate parameters for the
3529-
next match attempt (available since PCRE2 10.46).
3529+
next match attempt (available since PCRE2 10.47).
35303530
</p>
35313531
<p>
35323532
First, a match attempt should be made using one of the matching functions

doc/html/pcre2pattern.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3451,7 +3451,7 @@ <h3>
34513451
Recursion and subroutines with returned capture groups
34523452
</h3>
34533453
<p>
3454-
Since PCRE2 10.46, recursion and subroutine calls may also specify a list of
3454+
Since PCRE2 10.47, recursion and subroutine calls may also specify a list of
34553455
capture groups to return. This is a PCRE2 syntax extension not supported by
34563456
Perl. The pattern matching recurses into the referenced expression as described
34573457
above, however, when the recursion returns to the calling expression the

doc/pcre2.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3414,7 +3414,7 @@ ITERATING OVER ALL MATCHES
34143414
subject on all matches; or simply counting the number of matches. The
34153415
pcre2_next_match() function helps with this task by providing the ap-
34163416
propriate parameters for the next match attempt (available since PCRE2
3417-
10.46).
3417+
10.47).
34183418

34193419
First, a match attempt should be made using one of the matching func-
34203420
tions (pcre2_match(), pcre2_dfa_match(), or pcre2_jit_match()). Then,
@@ -10105,7 +10105,7 @@ RECURSIVE PATTERNS
1010510105

1010610106
Recursion and subroutines with returned capture groups
1010710107

10108-
Since PCRE2 10.46, recursion and subroutine calls may also specify a
10108+
Since PCRE2 10.47, recursion and subroutine calls may also specify a
1010910109
list of capture groups to return. This is a PCRE2 syntax extension not
1011010110
supported by Perl. The pattern matching recurses into the referenced
1011110111
expression as described above, however, when the recursion returns to

doc/pcre2api.3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3543,7 +3543,7 @@ A common task for applications is to implement "global" matching behaviour,
35433543
for example, replacing all matches in the subject; splitting the subject on all
35443544
matches; or simply counting the number of matches. The \fBpcre2_next_match()\fP
35453545
function helps with this task by providing the appropriate parameters for the
3546-
next match attempt (available since PCRE2 10.46).
3546+
next match attempt (available since PCRE2 10.47).
35473547
.P
35483548
First, a match attempt should be made using one of the matching functions
35493549
(\fBpcre2_match()\fP, \fBpcre2_dfa_match()\fP, or \fBpcre2_jit_match()\fP).

doc/pcre2pattern.3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3499,7 +3499,7 @@ below.
34993499
.SS "Recursion and subroutines with returned capture groups"
35003500
.rs
35013501
.sp
3502-
Since PCRE2 10.46, recursion and subroutine calls may also specify a list of
3502+
Since PCRE2 10.47, recursion and subroutine calls may also specify a list of
35033503
capture groups to return. This is a PCRE2 syntax extension not supported by
35043504
Perl. The pattern matching recurses into the referenced expression as described
35053505
above, however, when the recursion returns to the calling expression the

0 commit comments

Comments
 (0)