Add missing comma in example ;)
Daniel Westermann-Clark [Mon, 1 May 2006 19:31:19 +0000 (19:31 +0000)]
lib/DBIx/Class/Relationship/Base.pm

index ccbc433..c36d233 100644 (file)
@@ -53,7 +53,7 @@ relationship from C<Book> to C<Edition>, where the C<Edition> table refers to a
 publisher and a type (e.g. "paperback"):
 
   {
-    'foreign.publisher_id' => 'self.publisher_id'
+    'foreign.publisher_id' => 'self.publisher_id',
     'foreign.type_id'      => 'self.type_id',
   }