From 61b8c6fb8682e6b57ba56ce965f2cece8bdd5f27 Mon Sep 17 00:00:00 2001 From: Pieter Hordijk Date: Thu, 30 Apr 2015 19:32:03 +0000 Subject: [PATCH] Fixed references to examples / explanation "below" and "above" to actually link to the content. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@336703 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/pcre/pattern.syntax.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/pcre/pattern.syntax.xml b/reference/pcre/pattern.syntax.xml index 84bd27edd1..af8b190e75 100644 --- a/reference/pcre/pattern.syntax.xml +++ b/reference/pcre/pattern.syntax.xml @@ -570,7 +570,7 @@ The \A, \Z, and \z assertions differ from the traditional - circumflex and dollar (described below) in that they only + circumflex and dollar (described in anchors ) in that they only ever match at the very start and end of the subject string, whatever options are set. They are not affected by the PCRE_MULTILINE or @@ -1798,7 +1798,7 @@ An assertion is a test on the characters following or preceding the current matching point that does not actually consume any characters. The simple assertions coded as \b, - \B, \A, \Z, \z, ^ and $ are described above. More complicated + \B, \A, \Z, \z, ^ and $ are described in escape sequences. More complicated assertions are coded as subpatterns. There are two kinds: those that look ahead of the current position in the subject string, and those that look behind it.