diff options
-rw-r--r-- | Zend/tests/zend2.php | 2 |
1 files changed, 1 insertions, 1 deletions
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(); ?> |