Fix a47f273b change to be in line with the Row->Result rename of fb13a49f
Peter Rabbitson [Fri, 25 Oct 2013 05:10:47 +0000 (07:10 +0200)]
lib/DBIx/Class/Manual/Glossary.pod
lib/DBIx/Class/Relationship.pm

index 9202ccc..136355d 100644 (file)
@@ -101,14 +101,6 @@ fetch the data.
 
 See also: L<DBIx::Class::ResultSet/METHODS>
 
-=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<DBIx::Class::Manual::ResultClass>
 
+=head2 Row
+
+See Result.
+
 =head2 Object
 
 See Result.
 
-=head2 join
+=head2 Record
 
-See Join.
+See Result.
 
 =head2 prefetch
 
index 8b730ff..26a07ef 100644 (file)
@@ -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<Row|DBIx::Class::Manual::Glossary/"Row"> objects that represent the items
+L<Result|DBIx::Class::Manual::Glossary/"Result"> objects that represent the items
 of your table. From L<ResultSet|DBIx::Class::Manual::Glossary/"ResultSet"> 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,