@@ -412,10 +412,10 @@ <h1>pcre2api man page</h1>
412
412
< b > PCRE2_UCHAR8, PCRE2_UCHAR16, PCRE2_UCHAR32</ b >
413
413
< b > PCRE2_SPTR8, PCRE2_SPTR16, PCRE2_SPTR32</ b >
414
414
</ pre >
415
- The UCHAR types define unsigned code units of the appropriate widths. For
416
- example, PCRE2_UCHAR16 is usually defined as `uint16_t'. The SPTR types are
417
- constant pointers to the equivalent UCHAR types, that is, they are pointers to
418
- vectors of unsigned code units.
415
+ The UCHAR types define unsigned code units of the appropriate widths.
416
+ For example, PCRE2_UCHAR16 is usually defined as `uint16_t'.
417
+ The SPTR types are pointers to constants of the equivalent UCHAR types,
418
+ that is, they are pointers to vectors of unsigned code units.
419
419
</ P >
420
420
< P >
421
421
Character strings are passed to a PCRE2 library as sequences of unsigned
@@ -2864,15 +2864,15 @@ <h1>pcre2api man page</h1>
2864
2864
< P >
2865
2865
The use of recursion in patterns can lead to infinite loops. In the
2866
2866
interpretive matcher these would be eventually caught by the match or heap
2867
- limits, but this could take a long time and/or use a lot of memory if the
2867
+ limits, but this could take a long time and/or use a lot of memory if the
2868
2868
limits are large. There is therefore a check at the start of each recursion.
2869
- If the same group is still active from a previous call, and the current subject
2869
+ If the same group is still active from a previous call, and the current subject
2870
2870
pointer is the same as it was at the start of that group, and the furthest
2871
2871
inspected character of the subject has not changed, an error is generated.
2872
2872
</ P >
2873
2873
< P >
2874
2874
There are rare cases of matches that would complete, but nevertheless trigger
2875
- this error. This option disables the check. It is provided mainly for testing
2875
+ this error. This option disables the check. It is provided mainly for testing
2876
2876
when comparing JIT and interpretive behaviour.
2877
2877
< pre >
2878
2878
PCRE2_ENDANCHORED
0 commit comments