summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2002-08-03 09:50:07 +0000
committerAndi Gutmans <andi@php.net>2002-08-03 09:50:07 +0000
commit61a73183ccbfa69bff26080adb8329733e72729c (patch)
treec6187884ad82a4dcb8fe42be3634d971cc889587
parent4b492c4deb49e6b87f2f2cc4147768aa9421390b (diff)
downloadphp-git-61a73183ccbfa69bff26080adb8329733e72729c.tar.gz
- Small fix
-rw-r--r--Zend/tests/zend2.php2
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();
?>