From 6f712fd8610c3b6746d86fa19d6468fad354db37 Mon Sep 17 00:00:00 2001 From: Sara Golemon Date: Thu, 23 Jan 2003 04:06:26 +0000 Subject: [PATCH] Typo fixes git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@113096 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/pcre/functions/preg-replace.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/pcre/functions/preg-replace.xml b/reference/pcre/functions/preg-replace.xml index 3f005ac27a..fc6f0faf17 100644 --- a/reference/pcre/functions/preg-replace.xml +++ b/reference/pcre/functions/preg-replace.xml @@ -1,5 +1,5 @@ - + @@ -42,7 +42,7 @@ notation for your backreference. \\11, for example, would confuse preg_replace since it does not know whether you want the \\1 backreference followed by a literal 1, - or the \\11 backreference followed nothing. In this case + or the \\11 backreference followed by nothing. In this case the solution is to use \${1}1. This creates an isolated $1 backreference, leaving the 1 as a literal. @@ -55,7 +55,7 @@