From: Ash Berlin Date: Tue, 27 May 2008 12:50:10 +0000 (+0000) Subject: Fix var name typo in cookbook X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2d7a4e4642b546553e33e6b780228258279594a7;p=dbsrgits%2FDBIx-Class-Historic.git Fix var name typo in cookbook --- diff --git a/lib/DBIx/Class/Manual/Cookbook.pod b/lib/DBIx/Class/Manual/Cookbook.pod index 01b7fcf..ef36172 100644 --- a/lib/DBIx/Class/Manual/Cookbook.pod +++ b/lib/DBIx/Class/Manual/Cookbook.pod @@ -769,7 +769,7 @@ Sometimes you have a (set of) row objects that you want to put into a resultset without the need to hit the DB again. You can do that by using the L method: - my @rows; + my @uploadable_groups; while (my $group = $groups->next) { if ($group->can_upload($self)) { push @uploadable_groups, $group;