On Tue, 31 Oct 2006, Harrison, George (FSH) wrote:
> Harrison, George (FSH) <> wrote on October 31,
2006 10:20 AM:
>> objs = list Bric::Biz::Category($crit);
>>
>> Return a list of category objects based on
certain criteria
>>
>> It's the same in the POD, which isn't too
surprising. And in the 1.8
>> docs as well.
>>
>> Seems to me it should be:
>>
>> objs = Bric::Biz::Category->list($crit);, like in
the synopsis
...
> Also there is a typo in the body of the documentation.
> At the end of $obj = new Bric::Biz::Category($init);
Why didn't you want it to be
$obj = Bric::Biz::Category->new($init);
^.^
> - This is the default list constructor which should be
overrid>>ed<< in
> all derived classes even if it just calls 'die'
> + This is the default list constructor which should be
overrid>>den<< in
> all derived classes even if it just calls 'die'
Ok, I'll fix it.
|