]> granicus.if.org Git - php/commitdiff
- Small fix
authorAndi Gutmans <andi@php.net>
Sat, 3 Aug 2002 09:50:07 +0000 (09:50 +0000)
committerAndi Gutmans <andi@php.net>
Sat, 3 Aug 2002 09:50:07 +0000 (09:50 +0000)
Zend/tests/zend2.php

index f4466b73e2c43cab56670801a0bb40603538549b..7b6cc7f2e483022325f32fe97736f1ddc813c23d 100644 (file)
@@ -210,7 +210,7 @@ Example 6: Multiple derefencing of objects returned from methods
        }       
 
        $person = new Person("John", "New York");
-       print $person->getName()->display();
+       $person->getName()->display();
        
 ?>