Fixed some typos.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@309710 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Shein Alexey 2011-03-26 11:30:41 +00:00
parent 170ead3873
commit ec1dcb1e8e

View file

@ -73,7 +73,7 @@
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
This functions returns an <type>integer</type>.
This function returns an <type>integer</type>.
</para>
</refsect1>
@ -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');
?>