fix typo in variable name
Matt S Trout [Sat, 2 Jan 2010 00:41:12 +0000 (00:41 +0000)]
lib/DBIx/Class.pm

index cbe5988..3a8fa69 100644 (file)
@@ -116,7 +116,7 @@ Then you can use these classes in your application's code:
   # Output all artists names
   # $artist here is a DBIx::Class::Row, which has accessors
   # for all its columns. Rows are also subclasses of your Result class.
-  foreach $artist (@artists) {
+  foreach $artist (@all_artists) {
     print $artist->name, "\n";
   }