- Small fix

This commit is contained in:
Andi Gutmans 2002-08-03 09:50:07 +00:00
parent 4b492c4deb
commit 61a73183cc

View 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();
?>