Add missing comma in example ;)
[dbsrgits/DBIx-Class.git] / 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',
   }