Index: manual/en/module_specs/Zend_Http_Cookie-Handling.xml
===================================================================
--- manual/en/module_specs/Zend_Http_Cookie-Handling.xml (revision 7795)
+++ manual/en/module_specs/Zend_Http_Cookie-Handling.xml (working copy)
@@ -191,7 +191,7 @@
Using getter methods with Zend_Http_Cookie
getName(); // Will echo 'foo'
echo $cookie->getValue(); // will echo 'two words'
@@ -247,7 +247,7 @@
Matching cookies
match('https://www.example.com/somedir/foo.php');
// Will return true
@@ -268,7 +268,7 @@
// Will return true
// Create another cookie object - now, not secure, with expiration time in two hours
-$cookie = Zend_Http_Client('foo=two+words; domain=www.example.com; expires=' . date(DATE_COOKIE, time() + 7200);
+$cookie = Zend_Http_Cookie::fromString('foo=two+words; domain=www.example.com; expires=' . date(DATE_COOKIE, time() + 7200));
$cookie->match('http://www.example.com/');
// Will return true