Fix var name typo in cookbook
Ash Berlin [Tue, 27 May 2008 12:50:10 +0000 (12:50 +0000)]
lib/DBIx/Class/Manual/Cookbook.pod

index 01b7fcf..ef36172 100644 (file)
@@ -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<set_cache|DBIx::Class::Resultset/set_cache> method:
 
- my @rows;
+ my @uploadable_groups;
  while (my $group = $groups->next) {
    if ($group->can_upload($self)) {
      push @uploadable_groups, $group;