From: Shawn M Moore Date: Sun, 21 Jun 2009 18:22:29 +0000 (-0400) Subject: Use the right variable in a builder X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=13cb03c7843553e2eac028067765cb9468d52ce8;p=gitmo%2Fmoose-presentations.git Use the right variable in a builder --- diff --git a/moose-class/slides/index.html b/moose-class/slides/index.html index 2a1be67..e2d373d 100644 --- a/moose-class/slides/index.html +++ b/moose-class/slides/index.html @@ -1914,7 +1914,7 @@ sub _build_shoes { my $self = shift; return Shoes->new( - size => $_[0]->shoe_size ); + size => $self->shoe_size ); }