Subject: | Aspect::Library::Wormhole docs |
Date: | Mon, 4 Feb 2013 16:14:22 -0600 |
To: | bugs-aspect [...] rt.cpan.org |
From: | Caleb Cushing <xenoterracide [...] gmail.com> |
the synopsis is wrong
print ref A->new->a; # without aspect, prints C
use Aspect::Library::Wormhole;
aspect Wormhole => 'A::a', 'C::c';
print ref A->new->a; # with aspect, prints A
should be (because c returns the ref and Library doesn't export Aspect )
print A->new->a; # without aspect, prints C
use Aspect;
aspect Wormhole => 'A::a', 'C::c';
print A->new->a; # with aspect, prints A
also the link to http://citeseer.ist.psu.edu/254612.html is not public
and so should be removed.
--
Caleb Cushing
http://xenoterracide.com