update branch after pull
[dbsrgits/DBIx-Class-Historic.git] / lib / DBIx / Class.pm
index 7c2715e..34ab70d 100644 (file)
@@ -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";
   }