X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass.pm;h=34ab70da69874c5f82815ed3edc81d866a57903c;hb=eb7f8fb74b10ef5f3ef254edfc07773979a5e0b4;hp=7c2715eb96790f824b19ef2042ce885b8b0d6ae7;hpb=30e1753aaec2b22c4c62719197047f7515de9dce;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 7c2715e..34ab70d 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -117,7 +117,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. + # for all its columns. Rows are also subclasses of your Result class. foreach $artist (@artists) { print $artist->name, "\n"; }