Fix typos.
This commit is contained in:
parent
3af0a73414
commit
a9c1b4f63a
|
@ -1,4 +1,4 @@
|
|||
.TH PCRE2_CODE_FREE 3 "21 October 2014" "PCRE2 10.00"
|
||||
.TH PCRE2_CODE_FREE 3 "29 July 2015" "PCRE2 10.21"
|
||||
.SH NAME
|
||||
PCRE2 - Perl-compatible regular expressions (revised API)
|
||||
.SH SYNOPSIS
|
||||
|
@ -7,7 +7,7 @@ PCRE2 - Perl-compatible regular expressions (revised API)
|
|||
.B #include <pcre2.h>
|
||||
.PP
|
||||
.nf
|
||||
.B pcre2_code_free(pcre2_code *\fIcode\fP);
|
||||
.B void pcre2_code_free(pcre2_code *\fIcode\fP);
|
||||
.fi
|
||||
.
|
||||
.SH DESCRIPTION
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH PCRE2_MATCH_DATA_CREATE 3 "22 October 2014" "PCRE2 10.00"
|
||||
.TH PCRE2_MATCH_DATA_CREATE 3 "29 July 2015" "PCRE2 10.21"
|
||||
.SH NAME
|
||||
PCRE2 - Perl-compatible regular expressions (revised API)
|
||||
.SH SYNOPSIS
|
||||
|
@ -7,7 +7,7 @@ PCRE2 - Perl-compatible regular expressions (revised API)
|
|||
.B #include <pcre2.h>
|
||||
.PP
|
||||
.nf
|
||||
.B pcre2_match_data_create(uint32_t \fIovecsize\fP,
|
||||
.B pcre2_match_data *pcre2_match_data_create(uint32_t \fIovecsize\fP,
|
||||
.B " pcre2_general_context *\fIgcontext\fP);"
|
||||
.fi
|
||||
.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH PCRE2_MATCH_DATA_CREATE_FROM_PATTERN 3 "24 October 2014" "PCRE2 10.00"
|
||||
.TH PCRE2_MATCH_DATA_CREATE_FROM_PATTERN 3 "29 July 2015" "PCRE2 10.21"
|
||||
.SH NAME
|
||||
PCRE2 - Perl-compatible regular expressions (revised API)
|
||||
.SH SYNOPSIS
|
||||
|
@ -7,8 +7,8 @@ PCRE2 - Perl-compatible regular expressions (revised API)
|
|||
.B #include <pcre2.h>
|
||||
.PP
|
||||
.nf
|
||||
.B pcre2_match_data_create_from_pattern(const pcre2_code *\fIcode\fP,
|
||||
.B " pcre2_general_context *\fIgcontext\fP);"
|
||||
.B pcre2_match_data *pcre2_match_data_create_from_pattern(
|
||||
.B " const pcre2_code *\fIcode\fP, pcre2_general_context *\fIgcontext\fP);"
|
||||
.fi
|
||||
.
|
||||
.SH DESCRIPTION
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH PCRE2API 3 "17 July 2015" "PCRE2 10.21"
|
||||
.TH PCRE2API 3 "29 July 2015" "PCRE2 10.21"
|
||||
.SH NAME
|
||||
PCRE2 - Perl-compatible regular expressions (revised API)
|
||||
.sp
|
||||
|
@ -20,13 +20,13 @@ document for an overview of all the PCRE2 documentation.
|
|||
.B " uint32_t \fIoptions\fP, int *\fIerrorcode\fP, PCRE2_SIZE *\fIerroroffset,\fP"
|
||||
.B " pcre2_compile_context *\fIccontext\fP);"
|
||||
.sp
|
||||
.B pcre2_code_free(pcre2_code *\fIcode\fP);
|
||||
.B void pcre2_code_free(pcre2_code *\fIcode\fP);
|
||||
.sp
|
||||
.B pcre2_match_data_create(uint32_t \fIovecsize\fP,
|
||||
.B pcre2_match_data *pcre2_match_data_create(uint32_t \fIovecsize\fP,
|
||||
.B " pcre2_general_context *\fIgcontext\fP);"
|
||||
.sp
|
||||
.B pcre2_match_data_create_from_pattern(const pcre2_code *\fIcode\fP,
|
||||
.B " pcre2_general_context *\fIgcontext\fP);"
|
||||
.B pcre2_match_data *pcre2_match_data_create_from_pattern(
|
||||
.B " const pcre2_code *\fIcode\fP, pcre2_general_context *\fIgcontext\fP);"
|
||||
.sp
|
||||
.B int pcre2_match(const pcre2_code *\fIcode\fP, PCRE2_SPTR \fIsubject\fP,
|
||||
.B " PCRE2_SIZE \fIlength\fP, PCRE2_SIZE \fIstartoffset\fP,"
|
||||
|
@ -933,7 +933,7 @@ zero.
|
|||
.B " uint32_t \fIoptions\fP, int *\fIerrorcode\fP, PCRE2_SIZE *\fIerroroffset,\fP"
|
||||
.B " pcre2_compile_context *\fIccontext\fP);"
|
||||
.sp
|
||||
.B pcre2_code_free(pcre2_code *\fIcode\fP);
|
||||
.B void pcre2_code_free(pcre2_code *\fIcode\fP);
|
||||
.fi
|
||||
.P
|
||||
The \fBpcre2_compile()\fP function compiles a pattern into an internal form.
|
||||
|
@ -1788,11 +1788,11 @@ documentation.
|
|||
.rs
|
||||
.sp
|
||||
.nf
|
||||
.B pcre2_match_data_create(uint32_t \fIovecsize\fP,
|
||||
.B pcre2_match_data *pcre2_match_data_create(uint32_t \fIovecsize\fP,
|
||||
.B " pcre2_general_context *\fIgcontext\fP);"
|
||||
.sp
|
||||
.B pcre2_match_data_create_from_pattern(const pcre2_code *\fIcode\fP,
|
||||
.B " pcre2_general_context *\fIgcontext\fP);"
|
||||
.B pcre2_match_data *pcre2_match_data_create_from_pattern(
|
||||
.B " const pcre2_code *\fIcode\fP, pcre2_general_context *\fIgcontext\fP);"
|
||||
.sp
|
||||
.B void pcre2_match_data_free(pcre2_match_data *\fImatch_data\fP);
|
||||
.fi
|
||||
|
@ -2939,6 +2939,6 @@ Cambridge, England.
|
|||
.rs
|
||||
.sp
|
||||
.nf
|
||||
Last updated: 17 July 2015
|
||||
Last updated: 29 July 2015
|
||||
Copyright (c) 1997-2015 University of Cambridge.
|
||||
.fi
|
||||
|
|
Loading…
Reference in New Issue