X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FTutorial%2F03_MoreCatalystBasics.pod;h=ee72ff97c9613e500edb1e2589ee2139fcfedeb3;hp=d8ba67c10978e9e784302b547ab9aff3b937b3ee;hb=c6b49844b992185f956b556f3a5d14da67f7aa14;hpb=8fefbef869d13800721f91ef15229da60889d12d diff --git a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod index d8ba67c..ee72ff9 100644 --- a/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod +++ b/lib/Catalyst/Manual/Tutorial/03_MoreCatalystBasics.pod @@ -1259,15 +1259,15 @@ keys. For example, take a look at C and notice the following code: =head1 RELATIONS - + =head2 book_authors - + Type: has_many - + Related object: L - + =cut - + __PACKAGE__->has_many( "book_authors", "MyApp::Schema::Result::BookAuthor", @@ -1328,15 +1328,15 @@ there is a C relationship defined that acts as the "mirror image" to the C relationship we just looked at above: =head1 RELATIONS - + =head2 book - + Type: belongs_to - + Related object: L - + =cut - + __PACKAGE__->belongs_to( "book", "MyApp::Schema::Result::Book",