From: Peter Rabbitson Date: Fri, 25 Oct 2013 05:10:47 +0000 (+0200) Subject: Fix a47f273b change to be in line with the Row->Result rename of fb13a49f X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2dcff23ad7e34505eb42c7bcb6ae12ac5daa2c61;p=dbsrgits%2FDBIx-Class-Historic.git Fix a47f273b change to be in line with the Row->Result rename of fb13a49f --- diff --git a/lib/DBIx/Class/Manual/Glossary.pod b/lib/DBIx/Class/Manual/Glossary.pod index 9202ccc..136355d 100644 --- a/lib/DBIx/Class/Manual/Glossary.pod +++ b/lib/DBIx/Class/Manual/Glossary.pod @@ -101,14 +101,6 @@ fetch the data. See also: L -=head2 Record - -See Result. - -=head2 Row - -See Result. - =head2 Result Result objects contain your actual data. They are returned from @@ -117,13 +109,17 @@ row objects, including older versions of the DBIC documentation. See also: L +=head2 Row + +See Result. + =head2 Object See Result. -=head2 join +=head2 Record -See Join. +See Result. =head2 prefetch diff --git a/lib/DBIx/Class/Relationship.pm b/lib/DBIx/Class/Relationship.pm index 8b730ff..26a07ef 100644 --- a/lib/DBIx/Class/Relationship.pm +++ b/lib/DBIx/Class/Relationship.pm @@ -72,7 +72,7 @@ we can do this instead: my $fredsbooks = $schema->resultset('Author')->find({ Name => 'Fred' })->books; Each relationship sets up an accessor method on the -L objects that represent the items +L objects that represent the items of your table. From L objects, the relationships can be searched using the "search_related" method. In list context, each returns a list of Result objects for the related class,