diff options
author | Andi Gutmans <andi@php.net> | 2002-08-03 09:50:07 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2002-08-03 09:50:07 +0000 |
commit | 61a73183ccbfa69bff26080adb8329733e72729c (patch) | |
tree | c6187884ad82a4dcb8fe42be3634d971cc889587 | |
parent | 4b492c4deb49e6b87f2f2cc4147768aa9421390b (diff) | |
download | php-git-61a73183ccbfa69bff26080adb8329733e72729c.tar.gz |
- Small fix
-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(); ?> |