mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
s/drunk/drank, and then he was happy ;-)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@93270 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
5a0c3b3170
commit
c372bba737
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.85 $ -->
|
||||
<!-- $Revision: 1.86 $ -->
|
||||
<chapter id="language.types">
|
||||
<title>Types</title>
|
||||
|
||||
|
@ -809,8 +809,8 @@ EOT;
|
|||
<![CDATA[
|
||||
$beer = 'Heineken';
|
||||
echo "$beer's taste is great"; // works, "'" is an invalid character for varnames
|
||||
echo "He drunk some $beers"; // won't work, 's' is a valid character for varnames
|
||||
echo "He drunk some ${beer}s"; // works
|
||||
echo "He drank some $beers"; // won't work, 's' is a valid character for varnames
|
||||
echo "He drank some ${beer}s"; // works
|
||||
]]>
|
||||
</programlisting>
|
||||
</informalexample>
|
||||
|
|
Loading…
Reference in a new issue