From: Andi Gutmans Date: Sat, 3 Aug 2002 09:50:07 +0000 (+0000) Subject: - Small fix X-Git-Tag: dev~46 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=61a73183ccbfa69bff26080adb8329733e72729c;p=php - Small fix --- diff --git a/Zend/tests/zend2.php b/Zend/tests/zend2.php index f4466b73e2..7b6cc7f2e4 100644 --- a/Zend/tests/zend2.php +++ b/Zend/tests/zend2.php @@ -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(); ?>