From: Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯 Date: Tue, 15 Feb 2011 14:47:52 +0000 (+0100) Subject: RT #57989: typo X-Git-Tag: v5.8006~18 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Manual.git;a=commitdiff_plain;h=046fbe4f0db03d02824ea0ae5cc6017b3a030a39 RT #57989: typo https://rt.cpan.org/Ticket/Display.html?id=57989 --- diff --git a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod index 3831d6a..d8d13ca 100644 --- a/lib/Catalyst/Manual/Tutorial/05_Authentication.pod +++ b/lib/Catalyst/Manual/Tutorial/05_Authentication.pod @@ -166,7 +166,7 @@ C<1;>: # 2) Name of has_many() relationship this many_to_many() is shortcut for # 3) Name of belongs_to() relationship in model class of has_many() above # You must already have the has_many() defined to use a many_to_many(). - __PACKAGE__->many_to_many(roles => 'user_roles', 'role'); + __PACKAGE__->many_to_many(roles => 'user_roles', 'role_id'); The code for this update is obviously very similar to the edits we made to the C and C classes created in Chapter 3 with one