[Bast-commits] r8219 - DBIx-Class/0.08/trunk/lib/DBIx
matthewt at dev.catalyst.perl.org
matthewt at dev.catalyst.perl.org
Sat Jan 2 00:41:13 GMT 2010
Author: matthewt
Date: 2010-01-02 00:41:12 +0000 (Sat, 02 Jan 2010)
New Revision: 8219
Modified:
DBIx-Class/0.08/trunk/lib/DBIx/Class.pm
Log:
fix typo in variable name
Modified: DBIx-Class/0.08/trunk/lib/DBIx/Class.pm
===================================================================
--- DBIx-Class/0.08/trunk/lib/DBIx/Class.pm 2010-01-01 22:05:33 UTC (rev 8218)
+++ DBIx-Class/0.08/trunk/lib/DBIx/Class.pm 2010-01-02 00:41:12 UTC (rev 8219)
@@ -116,7 +116,7 @@
# 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";
}
More information about the Bast-commits
mailing list