Re: [PHP-DOC] typos in on-line documentation

2004-07-15 Thread Curt Zirzow
* Thus wrote Bob Hammack:
> My apollogies if this is the 900th report
> errors and corrections in XML-style tags 
 
Thanks for reporting this. This has been fixed in the documentation
cvs and will be updated on the site when the next building of the
documentation is done.

In the future, submitting a documentation bug can be helpful that
way changes that are needed to be done wont be overlooked.


Curt
-- 
First, let me assure you that this is not one of those shady pyramid schemes
you've been hearing about.  No, sir.  Our model is the trapezoid!


[PHP-DOC] typos in on-line documentation

2004-07-15 Thread Bob Hammack
My apollogies if this is the 900th report
errors and corrections in XML-style tags 

on page http://www.php.net/manual/en/language.oop5.visibility.php

Visibility

The visibility of a member or method can be defined by prefixing the declaration with 
the keywords: public, protected or private. Public declared items can be allow access 
to any caller. Protected limits access access to only classes inherited. 
ProtectedPrivate limits visiblity only to the 
class that defines the item.

Members Visibility

Class members must be defined with public, 
privateprotected, or private. 

Robb Hammack