Fix example (missing ')

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@274948 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Kalle Sommer Nielsen 2009-01-31 10:16:41 +00:00
parent 105626cf79
commit 389b85d773

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<refentry xml:id="memcached.construct" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
@ -60,10 +60,9 @@ echo get_class($m);
/* Create a persistent instance */
$m2 = new Memcached('story_pool');
...
$m3 = new Memcached('story_pool);
/* now $m2 and $m3 share the same connection */
$m3 = new Memcached('story_pool');
/* now $m2 and $m3 share the same connection */
?>
]]>
</programlisting>