From ec1dcb1e8e9a91bf5861817ba176fb4de6a1f8f4 Mon Sep 17 00:00:00 2001 From: Shein Alexey Date: Sat, 26 Mar 2011 11:30:41 +0000 Subject: [PATCH] Fixed some typos. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@309710 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/strings/functions/substr-count.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/strings/functions/substr-count.xml b/reference/strings/functions/substr-count.xml index e823f3fdca..dff21ed39b 100644 --- a/reference/strings/functions/substr-count.xml +++ b/reference/strings/functions/substr-count.xml @@ -73,7 +73,7 @@ &reftitle.returnvalues; - This functions returns an integer. + This function returns an integer. @@ -125,7 +125,7 @@ echo substr_count($text, 'is', 3, 3); echo substr_count($text, 'is', 5, 10); -// prints only 1, because it doesn't count overlapped subtrings +// prints only 1, because it doesn't count overlapped substrings $text2 = 'gcdgcdgcd'; echo substr_count($text2, 'gcdgcd'); ?>