[Pcre-svn] [866] code/trunk/doc: Fix typos in documentation.

Top Page
Delete this message
Author: Subversion repository
Date:  
To: pcre-svn
Subject: [Pcre-svn] [866] code/trunk/doc: Fix typos in documentation.
Revision: 866
          http://www.exim.org/viewvc/pcre2?view=rev&revision=866
Author:   ph10
Date:     2017-09-25 16:05:29 +0100 (Mon, 25 Sep 2017)
Log Message:
-----------
Fix typos in documentation.


Modified Paths:
--------------
    code/trunk/doc/html/pcre2api.html
    code/trunk/doc/pcre2.txt
    code/trunk/doc/pcre2api.3


Modified: code/trunk/doc/html/pcre2api.html
===================================================================
--- code/trunk/doc/html/pcre2api.html    2017-09-18 15:51:44 UTC (rev 865)
+++ code/trunk/doc/html/pcre2api.html    2017-09-25 15:05:29 UTC (rev 866)
@@ -2358,7 +2358,7 @@
     11,             /* the length of the subject string */
     0,              /* start at offset 0 in the subject */
     0,              /* default options */
-    match_data,     /* the match data block */
+    md,             /* the match data block */
     NULL);          /* a match context; NULL means use defaults */
 </pre>
 If the subject string is zero-terminated, the length can be given as
@@ -3273,10 +3273,10 @@
 <P>
 PCRE2_ERROR_BADREPLACEMENT is used for miscellaneous syntax errors in the
 replacement string, with more particular errors being PCRE2_ERROR_BADREPESCAPE
-(invalid escape sequence), PCRE2_ERROR_REPMISSING_BRACE (closing curly bracket
-not found), PCRE2_BADSUBSTITUTION (syntax error in extended group
-substitution), and PCRE2_BADSUBPATTERN (the pattern match ended before it
-started, which can happen if \K is used in an assertion).
+(invalid escape sequence), PCRE2_ERROR_REPMISSINGBRACE (closing curly bracket
+not found), PCRE2_ERROR_BADSUBSTITUTION (syntax error in extended group
+substitution), and PCRE2_ERROR_BADSUBSPATTERN (the pattern match ended before
+it started, which can happen if \K is used in an assertion).
 </P>
 <P>
 As for all PCRE2 errors, a text message that describes the error can be
@@ -3560,7 +3560,7 @@
 </P>
 <br><a name="SEC42" href="#TOC1">REVISION</a><br>
 <P>
-Last updated: 17 September 2017
+Last updated: 25 September 2017
 <br>
 Copyright &copy; 1997-2017 University of Cambridge.
 <br>


Modified: code/trunk/doc/pcre2.txt
===================================================================
--- code/trunk/doc/pcre2.txt    2017-09-18 15:51:44 UTC (rev 865)
+++ code/trunk/doc/pcre2.txt    2017-09-25 15:05:29 UTC (rev 866)
@@ -2322,7 +2322,7 @@
            11,             /* the length of the subject string */
            0,              /* start at offset 0 in the subject */
            0,              /* default options */
-           match_data,     /* the match data block */
+           md,             /* the match data block */
            NULL);          /* a match context; NULL means use defaults */


        If the subject string is zero-terminated, the length can  be  given  as
@@ -3170,10 +3170,10 @@
        PCRE2_ERROR_BADREPLACEMENT  is  used for miscellaneous syntax errors in
        the   replacement   string,   with   more   particular   errors   being
        PCRE2_ERROR_BADREPESCAPE  (invalid  escape  sequence), PCRE2_ERROR_REP-
-       MISSING_BRACE (closing curly bracket not found),  PCRE2_BADSUBSTITUTION
-       (syntax  error in extended group substitution), and PCRE2_BADSUBPATTERN
-       (the pattern match ended before it started, which can happen if  \K  is
-       used in an assertion).
+       MISSINGBRACE (closing curly bracket not found),  PCRE2_ERROR_BADSUBSTI-
+       TUTION   (syntax   error   in   extended   group   substitution),   and
+       PCRE2_ERROR_BADSUBSPATTERN (the pattern match ended before it  started,
+       which can happen if \K is used in an assertion).


        As for all PCRE2 errors, a text message that describes the error can be
        obtained  by  calling  the  pcre2_get_error_message()   function   (see
@@ -3437,7 +3437,7 @@


REVISION

-       Last updated: 17 September 2017
+       Last updated: 25 September 2017
        Copyright (c) 1997-2017 University of Cambridge.
 ------------------------------------------------------------------------------



Modified: code/trunk/doc/pcre2api.3
===================================================================
--- code/trunk/doc/pcre2api.3    2017-09-18 15:51:44 UTC (rev 865)
+++ code/trunk/doc/pcre2api.3    2017-09-25 15:05:29 UTC (rev 866)
@@ -1,4 +1,4 @@
-.TH PCRE2API 3 "17 September 2017" "PCRE2 10.31"
+.TH PCRE2API 3 "25 September 2017" "PCRE2 10.31"
 .SH NAME
 PCRE2 - Perl-compatible regular expressions (revised API)
 .sp
@@ -2335,7 +2335,7 @@
     11,             /* the length of the subject string */
     0,              /* start at offset 0 in the subject */
     0,              /* default options */
-    match_data,     /* the match data block */
+    md,             /* the match data block */
     NULL);          /* a match context; NULL means use defaults */
 .sp
 If the subject string is zero-terminated, the length can be given as
@@ -3267,10 +3267,10 @@
 .P
 PCRE2_ERROR_BADREPLACEMENT is used for miscellaneous syntax errors in the
 replacement string, with more particular errors being PCRE2_ERROR_BADREPESCAPE
-(invalid escape sequence), PCRE2_ERROR_REPMISSING_BRACE (closing curly bracket
-not found), PCRE2_BADSUBSTITUTION (syntax error in extended group
-substitution), and PCRE2_BADSUBPATTERN (the pattern match ended before it
-started, which can happen if \eK is used in an assertion).
+(invalid escape sequence), PCRE2_ERROR_REPMISSINGBRACE (closing curly bracket
+not found), PCRE2_ERROR_BADSUBSTITUTION (syntax error in extended group
+substitution), and PCRE2_ERROR_BADSUBSPATTERN (the pattern match ended before
+it started, which can happen if \eK is used in an assertion).
 .P
 As for all PCRE2 errors, a text message that describes the error can be
 obtained by calling the \fBpcre2_get_error_message()\fP function (see
@@ -3573,6 +3573,6 @@
 .rs
 .sp
 .nf
-Last updated: 17 September 2017
+Last updated: 25 September 2017
 Copyright (c) 1997-2017 University of Cambridge.
 .fi