Subject: | Minor fixe in the documentation |
Hi,
I noticed a minor typo in
http://search.cpan.org/~jsiracusa/Rose-DB-Object-0.798/lib/Rose/DB/Object/Loader.pm
that may be annoying while learning how Rose::DB works.
My::Corp::Product->new(name => 'Sled');
should be
$p = My::Corp::Product->new(name => 'Sled');
$loader->make_classes;
should be
$loader->make_classes(with_managers => 1);
so the example below works fine
Thank you for the great work :)