Skip to content

Commit fb3b380

Browse files
authored
Another batch of very small typos & issues (#707)
1 parent 961cfb6 commit fb3b380

19 files changed

+1081
-1080
lines changed

doc/html/pcre2-config.html

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,22 @@ <h1>pcre2-config man page</h1>
3030
<p>
3131
<b>pcre2-config</b> returns the configuration of the installed PCRE2 libraries
3232
and the options required to compile a program to use them. Some of the options
33-
apply only to the 8-bit, or 16-bit, or 32-bit libraries, respectively, and are
34-
not available for libraries that have not been built. If an unavailable option
35-
is encountered, the "usage" information is output.
33+
apply only to the 8-bit, 16-bit, or 32-bit libraries, respectively, and are not
34+
available for libraries that have not been built. If an unavailable option is
35+
encountered, the "usage" information is output.
3636
</p>
3737
<br><a name="SEC3" href="#TOC1">OPTIONS</a><br>
3838
<p>
3939
<b>--prefix</b>
40-
Writes the directory prefix used in the PCRE2 installation for architecture
41-
independent files (<i>/usr</i> on many systems, <i>/usr/local</i> on some
42-
systems) to the standard output.
40+
Writes the directory prefix used in the PCRE2 installation for
41+
architecture-independent files (<i>/usr</i> on many systems, <i>/usr/local</i> on
42+
some systems) to the standard output.
4343
</p>
4444
<p>
4545
<b>--exec-prefix</b>
46-
Writes the directory prefix used in the PCRE2 installation for architecture
47-
dependent files (normally the same as <b>--prefix</b>) to the standard output.
46+
Writes the directory prefix used in the PCRE2 installation for
47+
architecture-dependent files (normally the same as <b>--prefix</b>) to the
48+
standard output.
4849
</p>
4950
<p>
5051
<b>--version</b>

doc/html/pcre2.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ <h1>pcre2 man page</h1>
3434
<p>
3535
As well as Perl-style regular expression patterns, some features that appeared
3636
in Python and the original PCRE before they appeared in Perl are available
37-
using the Python syntax. There is also some support for some .NET and Oniguruma
38-
syntax items, and there are options for requesting some minor changes that give
37+
using the Python syntax. There is also support for some .NET and Oniguruma
38+
syntax items, and there are options for requesting minor changes that give
3939
better ECMAScript (JavaScript) compatibility.
4040
</p>
4141
<p>

doc/html/pcre2api.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1691,7 +1691,7 @@ <h1>pcre2api man page</h1>
16911691
unescaped closing parenthesis terminates the name. A closing parenthesis can be
16921692
included in a name either as \) or between \Q and \E. If the PCRE2_EXTENDED
16931693
or PCRE2_EXTENDED_MORE option is set with PCRE2_ALT_VERBNAMES, unescaped
1694-
whitespace in verb names is skipped and #-comments are recognized, exactly as
1694+
white space in verb names is skipped and #-comments are recognized, exactly as
16951695
in the rest of the pattern.
16961696
<pre>
16971697
PCRE2_AUTO_CALLOUT
@@ -3924,7 +3924,7 @@ <h1>pcre2api man page</h1>
39243924
</p>
39253925
<p>
39263926
The Python form \g&#60;n&#62;, where the angle brackets are part of the syntax and <i>n</i>
3927-
is either a group name or number, is recognized as an altertive way of
3927+
is either a group name or number, is recognized as an alternative way of
39283928
inserting the contents of a group, for example \g&#60;3&#62;.
39293929
</p>
39303930
<p>

doc/html/pcre2matching.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ <h1>pcre2matching man page</h1>
2727
This document describes the two different algorithms that are available in
2828
PCRE2 for matching a compiled regular expression against a given subject
2929
string. The "standard" algorithm is the one provided by the <b>pcre2_match()</b>
30-
function. This works in the same as Perl's matching function, and provides a
30+
function. This works in the same way as Perl's matching function, and provides a
3131
Perl-compatible matching operation. The just-in-time (JIT) optimization that is
3232
described in the
3333
<a href="pcre2jit.html"><b>pcre2jit</b></a>

doc/html/pcre2pattern.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3568,7 +3568,7 @@ <h1>pcre2pattern man page</h1>
35683568
<p>
35693569
A closing parenthesis can be included in a name either as \) or between \Q
35703570
and \E. In addition to backslash processing, if the PCRE2_EXTENDED or
3571-
PCRE2_EXTENDED_MORE option is also set, unescaped whitespace in verb names is
3571+
PCRE2_EXTENDED_MORE option is also set, unescaped white space in verb names is
35723572
skipped, and #-comments are recognized, exactly as in the rest of the pattern.
35733573
PCRE2_EXTENDED and PCRE2_EXTENDED_MORE do not affect verb names unless
35743574
PCRE2_ALT_VERBNAMES is also set.

doc/html/pcre2sample.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h1>pcre2sample man page</h1>
2121
distribution. A listing of this program is given in the
2222
<a href="pcre2demo.html"><b>pcre2demo</b></a>
2323
documentation. If you do not have a copy of the PCRE2 distribution, you can
24-
save this listing to re-create the contents of <i>pcre2demo.c</i>.
24+
save this listing to recreate the contents of <i>pcre2demo.c</i>.
2525
</p>
2626
<p>
2727
The demonstration program compiles the regular expression that is its

doc/html/pcre2syntax.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ <h1>pcre2syntax man page</h1>
332332
<p>
333333
<pre>
334334
(?[...]) Perl extended character class
335-
(?[\p{Thai} & \p{Nd}]) operators; whitespace ignored
335+
(?[\p{Thai} & \p{Nd}]) operators; white space ignored
336336
(?[(x - y) & z]) parentheses for grouping
337337

338338
(?[ [^3] & \p{Nd} ]) [...] is a nested ordinary class

doc/html/pcre2test.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ <h1>pcre2test man page</h1>
488488
<br><a name="SEC7" href="#TOC1">MODIFIER SYNTAX</a><br>
489489
<p>
490490
Modifier lists are used with both pattern and subject lines. Items in a list
491-
are separated by commas followed by optional white space. Trailing whitespace
491+
are separated by commas followed by optional white space. Trailing white space
492492
in a modifier list is ignored. Some modifiers may be given for both patterns
493493
and subject lines, whereas others are valid only for one or the other. Each
494494
modifier has a long name, for example "anchored", and some of them must be
@@ -615,7 +615,7 @@ <h1>pcre2test man page</h1>
615615
<pre>
616616
abc\=notbol,notempty
617617
</pre>
618-
If the subject string is empty and \= is followed by whitespace, the line is
618+
If the subject string is empty and \= is followed by white space, the line is
619619
treated as a comment line, and is not used for matching. For example:
620620
<pre>
621621
\= This is a comment.

doc/pcre2-config.1

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,23 @@ pcre2-config - program to return PCRE2 configuration
1616
.sp
1717
\fBpcre2-config\fP returns the configuration of the installed PCRE2 libraries
1818
and the options required to compile a program to use them. Some of the options
19-
apply only to the 8-bit, or 16-bit, or 32-bit libraries, respectively, and are
20-
not available for libraries that have not been built. If an unavailable option
21-
is encountered, the "usage" information is output.
19+
apply only to the 8-bit, 16-bit, or 32-bit libraries, respectively, and are not
20+
available for libraries that have not been built. If an unavailable option is
21+
encountered, the "usage" information is output.
2222
.
2323
.
2424
.SH OPTIONS
2525
.rs
2626
.TP 10
2727
\fB--prefix\fP
28-
Writes the directory prefix used in the PCRE2 installation for architecture
29-
independent files (\fI/usr\fP on many systems, \fI/usr/local\fP on some
30-
systems) to the standard output.
28+
Writes the directory prefix used in the PCRE2 installation for
29+
architecture-independent files (\fI/usr\fP on many systems, \fI/usr/local\fP on
30+
some systems) to the standard output.
3131
.TP 10
3232
\fB--exec-prefix\fP
33-
Writes the directory prefix used in the PCRE2 installation for architecture
34-
dependent files (normally the same as \fB--prefix\fP) to the standard output.
33+
Writes the directory prefix used in the PCRE2 installation for
34+
architecture-dependent files (normally the same as \fB--prefix\fP) to the
35+
standard output.
3536
.TP 10
3637
\fB--version\fP
3738
Writes the version number of the installed PCRE2 libraries to the standard

doc/pcre2-config.txt

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -16,51 +16,51 @@ DESCRIPTION
1616

1717
pcre2-config returns the configuration of the installed PCRE2 libraries
1818
and the options required to compile a program to use them. Some of the
19-
options apply only to the 8-bit, or 16-bit, or 32-bit libraries, re-
20-
spectively, and are not available for libraries that have not been
21-
built. If an unavailable option is encountered, the "usage" information
22-
is output.
19+
options apply only to the 8-bit, 16-bit, or 32-bit libraries, respec-
20+
tively, and are not available for libraries that have not been built.
21+
If an unavailable option is encountered, the "usage" information is
22+
output.
2323

2424

2525
OPTIONS
2626

27-
--prefix Writes the directory prefix used in the PCRE2 installation
28-
for architecture independent files (/usr on many systems,
27+
--prefix Writes the directory prefix used in the PCRE2 installation
28+
for architecture-independent files (/usr on many systems,
2929
/usr/local on some systems) to the standard output.
3030

3131
--exec-prefix
32-
Writes the directory prefix used in the PCRE2 installation
33-
for architecture dependent files (normally the same as --pre-
32+
Writes the directory prefix used in the PCRE2 installation
33+
for architecture-dependent files (normally the same as --pre-
3434
fix) to the standard output.
3535

3636
--version Writes the version number of the installed PCRE2 libraries to
3737
the standard output.
3838

39-
--libs8 Writes to the standard output the command line options re-
40-
quired to link with the 8-bit PCRE2 library (-lpcre2-8 on
39+
--libs8 Writes to the standard output the command line options re-
40+
quired to link with the 8-bit PCRE2 library (-lpcre2-8 on
4141
many systems).
4242

43-
--libs16 Writes to the standard output the command line options re-
44-
quired to link with the 16-bit PCRE2 library (-lpcre2-16 on
43+
--libs16 Writes to the standard output the command line options re-
44+
quired to link with the 16-bit PCRE2 library (-lpcre2-16 on
4545
many systems).
4646

47-
--libs32 Writes to the standard output the command line options re-
48-
quired to link with the 32-bit PCRE2 library (-lpcre2-32 on
47+
--libs32 Writes to the standard output the command line options re-
48+
quired to link with the 32-bit PCRE2 library (-lpcre2-32 on
4949
many systems).
5050

5151
--libs-posix
52-
Writes to the standard output the command line options re-
52+
Writes to the standard output the command line options re-
5353
quired to link with PCRE2's POSIX API wrapper library
5454
(-lpcre2-posix -lpcre2-8 on many systems).
5555

56-
--cflags Writes to the standard output the command line options re-
56+
--cflags Writes to the standard output the command line options re-
5757
quired to compile files that use PCRE2 (this may include some
5858
-I options, but is blank on many systems).
5959

6060
--cflags-posix
61-
Writes to the standard output the command line options re-
62-
quired to compile files that use PCRE2's POSIX API wrapper
63-
library (this may include some -I options, but is blank on
61+
Writes to the standard output the command line options re-
62+
quired to compile files that use PCRE2's POSIX API wrapper
63+
library (this may include some -I options, but is blank on
6464
many systems).
6565

6666

@@ -71,8 +71,8 @@ SEE ALSO
7171

7272
AUTHOR
7373

74-
This manual page was originally written by Mark Baker for the Debian
75-
GNU/Linux system. It has been subsequently revised as a generic PCRE2
74+
This manual page was originally written by Mark Baker for the Debian
75+
GNU/Linux system. It has been subsequently revised as a generic PCRE2
7676
man page.
7777

7878

0 commit comments

Comments
 (0)