[Pcre-svn] [1670] code/trunk/doc/pcrecompat.3: Fix typo.

Top Page
Delete this message
Author: Subversion repository
Date:  
To: pcre-svn
Subject: [Pcre-svn] [1670] code/trunk/doc/pcrecompat.3: Fix typo.
Revision: 1670
          http://vcs.pcre.org/viewvc?view=rev&revision=1670
Author:   ph10
Date:     2016-10-18 16:38:16 +0100 (Tue, 18 Oct 2016)
Log Message:
-----------
Fix typo.


Modified Paths:
--------------
    code/trunk/doc/pcrecompat.3


Modified: code/trunk/doc/pcrecompat.3
===================================================================
--- code/trunk/doc/pcrecompat.3    2016-10-18 15:10:09 UTC (rev 1669)
+++ code/trunk/doc/pcrecompat.3    2016-10-18 15:38:16 UTC (rev 1670)
@@ -113,7 +113,7 @@
 14. PCRE's handling of duplicate subpattern numbers and duplicate subpattern
 names is not as general as Perl's. This is a consequence of the fact the PCRE
 works internally just with numbers, using an external table to translate
-between numbers and names. In particular, a pattern such as (?|(?<a>A)|(?<b)B),
+between numbers and names. In particular, a pattern such as (?|(?<a>A)|(?<b>B),
 where the two capturing parentheses have the same number but different names,
 is not supported, and causes an error at compile time. If it were allowed, it
 would not be possible to distinguish which parentheses matched, because both