From: Matt S Trout Date: Sat, 2 Jan 2010 00:41:12 +0000 (+0000) Subject: fix typo in variable name X-Git-Tag: v0.08116~78 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=85067746e4c5559e17f2064b775445b706b234d4;p=dbsrgits%2FDBIx-Class.git fix typo in variable name --- diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index cbe5988..3a8fa69 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -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"; }